Interface TcapComponent
-
- All Known Implementing Classes:
TCOperationInvokeTcapComponent,TCOperationProviderErrorTcapComponent,TCOperationResultTcapComponent,TCOperationTcapComponent,TCOperationUserErrorTcapComponent
public interface TcapComponentCommon interface to all tcap components. Components are operation requests (an invoke), operation results, or errors.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classTcapComponent.TypeThe types of tcap component
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TCOperationInvokeTcapComponentasTcOperationInvoke()TCOperationProviderErrorTcapComponentasTcOperationProviderError()TCOperationResultTcapComponentasTcOperationResult()TCOperationUserErrorTcapComponent<?>asTcOperationUserError()com.opencloud.slee.resources.cgin.TcapOperationgetOperation()TcapComponent.TypegetType()booleanisType(TcapComponent.Type toCheck)
-
-
-
Method Detail
-
getOperation
com.opencloud.slee.resources.cgin.TcapOperation getOperation()
- Returns:
- the TCAP operation this component is related to
-
getType
TcapComponent.Type getType()
- Returns:
- the type of this tcap component
-
isType
boolean isType(TcapComponent.Type toCheck)
- Parameters:
toCheck- the type to compare the type of this tcap component to- Returns:
- true, if the type if this tcap component is the same as
toCheck
-
asTcOperationInvoke
TCOperationInvokeTcapComponent asTcOperationInvoke()
-
asTcOperationResult
TCOperationResultTcapComponent asTcOperationResult()
-
asTcOperationProviderError
TCOperationProviderErrorTcapComponent asTcOperationProviderError()
-
asTcOperationUserError
TCOperationUserErrorTcapComponent<?> asTcOperationUserError()
-
-