use of com.openshift.client.cartridge.IDeployedStandaloneCartridge in project camel by apache.
the class OpenShiftProducer method doGetStandaloneCartridge.
protected void doGetStandaloneCartridge(Exchange exchange, IDomain domain) throws CamelExchangeException {
String name = exchange.getIn().getHeader(OpenShiftConstants.APPLICATION, getEndpoint().getApplication(), String.class);
if (name == null) {
throw new CamelExchangeException("Application not specified", exchange);
}
IApplication app = domain.getApplicationByName(name);
if (app == null) {
throw new CamelExchangeException("Application with id " + name + " not found.", exchange);
} else {
IDeployedStandaloneCartridge p = app.getCartridge();
exchange.getIn().setBody(p.getDisplayName());
}
}
Aggregations