use of org.codice.alliance.nsili.endpoint.managers.OrderMgrImpl in project alliance by codice.
the class LibraryImpl method getOrderMgrObject.
private Object getOrderMgrObject(String managerId) {
Object obj;
OrderMgrImpl orderMgr = new OrderMgrImpl();
orderMgr.setCatalogFramework(catalogFramework);
orderMgr.setFilterBuilder(filterBuilder);
orderMgr.setEmailConfiguration(emailConfiguration);
if (!CorbaUtils.isIdActive(poa, managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)))) {
try {
poa.activate_object_with_id(managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)), orderMgr);
} catch (ServantAlreadyActive | ObjectAlreadyActive | WrongPolicy e) {
LOGGER.info("Error activating OrderMgr: ", e);
}
}
obj = poa.create_reference_with_id(managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)), OrderMgrHelper.id());
return obj;
}
use of org.codice.alliance.nsili.endpoint.managers.OrderMgrImpl in project alliance by codice.
the class OrderMgrImplTest method setUp.
@Before
public void setUp() throws Exception {
setupCommonMocks();
setupOrderMgrMocks();
try {
setupOrb();
orbRunThread = new Thread(() -> orb.run());
orbRunThread.start();
} catch (InvalidName | AdapterInactive | WrongPolicy | ServantNotActive e) {
LOGGER.error("Unable to start the CORBA server", e);
} catch (IOException e) {
LOGGER.error("Unable to generate the IOR file", e);
} catch (SecurityServiceException e) {
LOGGER.error("Unable to setup guest security credentials", e);
}
String managerId = UUID.randomUUID().toString();
orderMgr = new OrderMgrImpl();
orderMgr.setFilterBuilder(new GeotoolsFilterBuilder());
orderMgr.setCatalogFramework(mockCatalogFramework);
if (!CorbaUtils.isIdActive(rootPOA, managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)))) {
try {
rootPOA.activate_object_with_id(managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)), orderMgr);
} catch (ServantAlreadyActive | ObjectAlreadyActive | WrongPolicy e) {
LOGGER.error("Error activating ProductMgr: {}", e);
}
}
rootPOA.create_reference_with_id(managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)), ProductMgrHelper.id());
}
Aggregations