Class Operation
- java.lang.Object
-
- com.opencloud.slee.resources.sis.script.in.interceptors.Operation
-
- Direct Known Subclasses:
OperationError
,OperationInvoke
,OperationResult
public abstract class Operation extends Object
An operation sent or received by an interceptor extension component.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Operation.Type
The type of operation.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description int
getInvokeID()
Get the invoke ID for the operation.abstract String
getName()
Get a descriptive name for this operation.TcapOperation
getOperation()
Get the TCAP operation metadata that describes the operation.abstract Operation.Type
getType()
Get the type of operation.
-
-
-
Method Detail
-
getOperation
public TcapOperation getOperation()
Get the TCAP operation metadata that describes the operation.- Returns:
- the TCAP operation metadata that describes the operation.
-
getInvokeID
public int getInvokeID()
Get the invoke ID for the operation.- Returns:
- the invoke ID.
-
getType
public abstract Operation.Type getType()
Get the type of operation.- Returns:
- the type of operation.
-
getName
public abstract String getName()
Get a descriptive name for this operation.- Returns:
- a name.
-
-