[Schema-Dump] changed the model to allow to change the description annotation w.r.t. the specific semantics of the field - part 5
This commit is contained in:
parent
61400f22c2
commit
823b4cc210
|
@ -28,4 +28,15 @@ class OrganizationPid implements Serializable {
|
||||||
public void setValue(String value) {
|
public void setValue(String value) {
|
||||||
this.value = value;
|
this.value = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static OrganizationPid newInstance(String scheme, String value) {
|
||||||
|
OrganizationPid cf = new OrganizationPid();
|
||||||
|
|
||||||
|
cf.setScheme(scheme);
|
||||||
|
cf.setValue(value);
|
||||||
|
|
||||||
|
return cf;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue