Skip to content
Snippets Groups Projects
Commit 6d12ef4d authored by kaloyane's avatar kaloyane
Browse files

fix test by adding @JsonIgnore to the getter of a non-existing 'identifier' field.

SVN: 23994
parent 2121bf72
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,8 @@ package ch.systemsx.cisd.openbis.generic.shared.api.v1.dto;
import java.io.Serializable;
import org.codehaus.jackson.annotate.JsonIgnore;
import ch.systemsx.cisd.openbis.generic.shared.basic.IIdentifierHolder;
/**
......@@ -85,6 +87,7 @@ public final class Project implements Serializable, IIdentifierHolder
return code;
}
@JsonIgnore
public String getIdentifier()
{
return "/" + spaceCode + "/" + code;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment