use of alma.xmljbind.test.obsproject.ObsProjectRefT in project ACS by ACS-Community.
the class TestEntityFactory method getObsProposal.
ObsProposal getObsProposal() {
ObsProposal prop = null;
prop = new ObsProposal();
ObsProposalEntityT entity = new ObsProposalEntityT();
prop.setObsProposalEntity(entity);
entity.setEntityId("uid://X1230000000000000/X00000002");
ObsProjectRefT ref = new ObsProjectRefT();
ref.setEntityId("uid://X1230000000000000/X00000001");
prop.setObsProjectRef(ref);
return prop;
}
Aggregations