Package javax.wsdl
Class OperationType
- java.lang.Object
-
- javax.wsdl.OperationType
-
- All Implemented Interfaces:
java.io.Serializable
public class OperationType extends java.lang.Object implements java.io.SerializableThis class represents an operation type which can be one of request-response, solicit response, one way or notification. This represents a safe way to prevent usage of invalid values since the only objects of this class available are the public static instances declared within the class. Need to figure out if this should be made into an interface.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static OperationTypeNOTIFICATIONstatic OperationTypeONE_WAYstatic OperationTypeREQUEST_RESPONSEstatic longserialVersionUIDstatic OperationTypeSOLICIT_RESPONSE
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(OperationType operationType)java.lang.StringtoString()
-
-
-
Field Detail
-
serialVersionUID
public static final long serialVersionUID
- See Also:
- Constant Field Values
-
ONE_WAY
public static OperationType ONE_WAY
-
REQUEST_RESPONSE
public static OperationType REQUEST_RESPONSE
-
SOLICIT_RESPONSE
public static OperationType SOLICIT_RESPONSE
-
NOTIFICATION
public static OperationType NOTIFICATION
-
-
Method Detail
-
equals
public boolean equals(OperationType operationType)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-