use of org.apache.airavata.registry.core.app.catalog.model.AppOutput_PK in project airavata by apache.
the class ApplicationOutputResource method save.
public void save() throws AppCatalogException {
EntityManager em = null;
try {
em = AppCatalogJPAUtils.getEntityManager();
ApplicationIntOutput existingApplicationOutput = em.find(ApplicationIntOutput.class, new AppOutput_PK(interfaceID, outputKey));
if (em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
ApplicationIntOutput applicationOutput;
em = AppCatalogJPAUtils.getEntityManager();
em.getTransaction().begin();
if (existingApplicationOutput == null) {
applicationOutput = new ApplicationIntOutput();
} else {
applicationOutput = existingApplicationOutput;
}
ApplicationInterface applicationInterface = em.find(ApplicationInterface.class, interfaceID);
applicationOutput.setApplicationInterface(applicationInterface);
applicationOutput.setInterfaceID(applicationInterface.getInterfaceID());
applicationOutput.setDataType(dataType);
applicationOutput.setOutputKey(outputKey);
applicationOutput.setOutputVal(outputVal);
applicationOutput.setRequired(isRequired);
applicationOutput.setRequiredToCMD(requiredToCMD);
applicationOutput.setDataMovement(dataMovement);
applicationOutput.setDataNameLocation(dataNameLocation);
applicationOutput.setSearchQuery(searchQuery);
applicationOutput.setApplicationArgument(appArgument);
applicationOutput.setOutputStreaming(outputStreaming);
em.merge(applicationOutput);
em.getTransaction().commit();
if (em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
} catch (Exception e) {
logger.error(e.getMessage(), e);
throw new AppCatalogException(e);
} finally {
if (em != null && em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
}
}
use of org.apache.airavata.registry.core.app.catalog.model.AppOutput_PK in project airavata by apache.
the class ApplicationOutputResource method isExists.
public boolean isExists(Object identifier) throws AppCatalogException {
HashMap<String, String> ids;
if (identifier instanceof Map) {
ids = (HashMap) identifier;
} else {
logger.error("Identifier should be a map with the field name and it's value");
throw new AppCatalogException("Identifier should be a map with the field name and it's value");
}
EntityManager em = null;
try {
em = AppCatalogJPAUtils.getEntityManager();
ApplicationIntOutput applicationOutput = em.find(ApplicationIntOutput.class, new AppOutput_PK(ids.get(AppOutputConstants.INTERFACE_ID), ids.get(AppOutputConstants.OUTPUT_KEY)));
if (em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
return applicationOutput != null;
} catch (ApplicationSettingsException e) {
logger.error(e.getMessage(), e);
throw new AppCatalogException(e);
} finally {
if (em != null && em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
}
}
Aggregations