IInstanceHelperBean.java Interface for instancerHelperBean
The following example shows the IInstanceHelperBean.java
interface for the instanceHelperBean
bean:
package oracle.soa.platform.component.spring.beans; import oracle.integration.platform.instance.engine.ComponentInstanceContext; /** * Instancehelper Bean, gives access to composite / component + instance information * <br/> * To use this bean from within your context, declare property * with ref="instanceHelperBean". E.g. * <property name="instanceHelper" ref="<b>instanceHelperBean</b>"/> */ public interface IInstanceHelperBean { /** * Returns the instance id of the composite instance currently running * @return the composite instance id */ public String getCompositeInstanceId (); /** * Returns the instance id of the component instance currently running * @return the component instance id */ public String getComponentInstanceId (); /** * Returns the composite dn containing this component * @return the composite dn */ public String getCompositeDN (); /** * Returns the name of this spring component * @return the component name */ public String getComponentName (); }