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 classOperation.TypeThe type of operation.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description intgetInvokeID()Get the invoke ID for the operation.abstract StringgetName()Get a descriptive name for this operation.TcapOperationgetOperation()Get the TCAP operation metadata that describes the operation.abstract Operation.TypegetType()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.
-
-