Interface TcapComponent
-
- All Known Implementing Classes:
TCOperationInvokeTcapComponent
,TCOperationProviderErrorTcapComponent
,TCOperationResultTcapComponent
,TCOperationTcapComponent
,TCOperationUserErrorTcapComponent
public interface TcapComponent
Common 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 class
TcapComponent.Type
The types of tcap component
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TCOperationInvokeTcapComponent
asTcOperationInvoke()
TCOperationProviderErrorTcapComponent
asTcOperationProviderError()
TCOperationResultTcapComponent
asTcOperationResult()
TCOperationUserErrorTcapComponent<?>
asTcOperationUserError()
com.opencloud.slee.resources.cgin.TcapOperation
getOperation()
TcapComponent.Type
getType()
boolean
isType(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()
-
-