Interface PolicyServiceMessage
-
- All Known Subinterfaces:
PolicyServiceRequest
,PolicyServiceResponse
- All Known Implementing Classes:
ITIMPolicyServiceRequestImpl
,ITIMPolicyServiceResponseImpl
public interface PolicyServiceMessage
Representation of password policy request and response messages.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
PolicyServiceMessage.ServiceOp
Typesafe enum type defintion for valid password policy request operations.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getMessageData()
Get the network message data representation.PolicyServiceMessage.ServiceOp
getOperation()
Get the operation type.
-
-
-
Method Detail
-
getMessageData
java.lang.String getMessageData() throws java.io.IOException
Get the network message data representation.- Returns:
- The message data, or
null
if not set. - Throws:
java.io.IOException
-
getOperation
PolicyServiceMessage.ServiceOp getOperation()
Get the operation type.- Returns:
- The operation type instance. Will be one of the references
defined on
PolicyServiceMessage.ServiceOp
.
-
-