![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.ode.extension.longrunning.LongRunningExtensionBundle Maven / Gradle / Ivy
package org.apache.ode.extension.longrunning;
import org.apache.ode.bpel.runtime.extension.AbstractExtensionBundle;
public class LongRunningExtensionBundle extends AbstractExtensionBundle {
public static String NS = "http://ode.apache.org/extension/longrunning";
/**
* Returns the extension namespace this bundle provides implementations for.
*
* @return String
*/
public String getNamespaceURI() {
return NS;
}
/**
* Register extension operations.
*/
public void registerExtensionActivities() {
registerExtensionOperation("longRunning", LongRunningExtensionOperation.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy