Class AddressSubscription
- java.lang.Object
-
- com.opencloud.slee.resources.sis.management.Subscription
-
- com.opencloud.slee.resources.sis.management.AddressSubscription
-
- All Implemented Interfaces:
Serializable
public final class AddressSubscription extends Subscription
SIS address subscription information.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AddressSubscription(String name, String address, String description, CompositionID originating, CompositionID terminating, CompositionID thirdParty, int debugLevel, boolean audit)
Create a new address subscription object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAddress()
Get the address this subscription applies to.-
Methods inherited from class com.opencloud.slee.resources.sis.management.Subscription
getDebugLevel, getDescription, getName, getOriginatingComposition, getTerminatingComposition, getThirdPartyComposition, hasOriginatingComposition, hasTerminatingComposition, hasThirdPartyComposition, isAuditLoggingEnabled, toString
-
-
-
-
Constructor Detail
-
AddressSubscription
public AddressSubscription(String name, String address, String description, CompositionID originating, CompositionID terminating, CompositionID thirdParty, int debugLevel, boolean audit)
Create a new address subscription object.- Parameters:
name
- the name of this subscription.address
- the address that this subscription applies to.description
- a description of this subscription. May benull
.originating
- the composition that will be invoked for an originating trigger if the subscription is triggered. May benull
.terminating
- composition that will be invoked for a terminating trigger if the subscription is triggered. May benull
.thirdParty
- composition that will be invoked for a third-party call trigger if the subscription is triggered. May benull
.debugLevel
- the debug level for the subscription. Fine-grained tracing debug levels are given in the package summary.audit
- specifies if auditing will be enabled for this subscription- Throws:
NullPointerException
- ifname
oraddress
is null.
-
-
Method Detail
-
getAddress
public String getAddress()
Get the address this subscription applies to.- Returns:
- the address.
-
-