Class UpdateCompositionTask
- java.lang.Object
-
- com.opencloud.slee.resources.sis.management.ant.SISSubTask
-
- com.opencloud.slee.resources.sis.management.ant.UpdateCompositionTask
-
public class UpdateCompositionTask extends SISSubTask
Update the fine-grained tracing debug level or auditing attributes of a composition for a SIS RA entity. The SIS RA entity to manage to is specified by the enclosingSISManagementTask
element. The component ID of the composition to update is specified in the nestedcomposition
element. For example:<
This task invokes thesis-sip-management
raentity="foo"> <updatecomposition debuglevel="2" audit="true"> <composition
name="OriginatingComposition" vendor="xyz.com" version="1.0"/> </updatecomposition> </sis-sip-management>CompositionManagementMBean.setDebugLevel(com.opencloud.slee.resources.sis.components.CompositionID, int)
andCompositionManagementMBean.setAuditLoggingEnabled(com.opencloud.slee.resources.sis.components.CompositionID, boolean)
management operations.Ant Parameters
Attribute Description Required debuglevel The fine-grained tracing debug level for the composition. Must be a value between 0 and 3. No. audit A boolean value that specifies whether the SIS will generate audit logs for calls that select this composition. No. failonerror Default failure case behaviour for this task. If set to 'false' or 'no', the build will continue when this task attempts a redundant action. No, default is inherited from the enclosing SISManagementTask
.Parameters specified as nested elements
Element Description composition
Contains the composition component ID. Exactly one nested composition element must be present.
-
-
Constructor Summary
Constructors Constructor Description UpdateCompositionTask()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addConfiguredComposition(CompositionComponentElement element)
void
setAudit(boolean enabled)
void
setDebugLevel(int debugLevel)
-
Methods inherited from class com.opencloud.slee.resources.sis.management.ant.SISSubTask
execute, getFailOnError, setFailOnError
-
-
-
-
Method Detail
-
addConfiguredComposition
public void addConfiguredComposition(CompositionComponentElement element)
-
setDebugLevel
public void setDebugLevel(int debugLevel)
-
setAudit
public void setAudit(boolean enabled)
-
-