Package ch.systemsx.cisd.common.api
Class RpcServiceInterfaceVersionDTO
- java.lang.Object
- 
- ch.systemsx.cisd.common.api.RpcServiceInterfaceVersionDTO
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 public class RpcServiceInterfaceVersionDTO extends java.lang.Object implements java.io.SerializableDescribes an RPC interface supported by the server.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description RpcServiceInterfaceVersionDTO(java.lang.String name, java.lang.String urlSuffix, int majorVersion, int minorVersion)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetInterfaceName()The name of this interface used for identification.intgetMajorVersion()The major version of the interface.intgetMinorVersion()The major version of the interface.java.lang.StringgetUrlSuffix()The suffix added to the server's URL to produce the URL for this interface.inthashCode()java.lang.StringtoString()
 
- 
- 
- 
Method Detail- 
getInterfaceNamepublic java.lang.String getInterfaceName() The name of this interface used for identification.
 - 
getUrlSuffixpublic java.lang.String getUrlSuffix() The suffix added to the server's URL to produce the URL for this interface. Used by a service factory to create a proxy to the service.
 - 
getMajorVersionpublic int getMajorVersion() The major version of the interface. E.g., an interface with version 2.11 has major version 2.
 - 
getMinorVersionpublic int getMinorVersion() The major version of the interface. E.g., an interface with version 2.11 has minor version 11.
 - 
equalspublic boolean equals(java.lang.Object obj) - Overrides:
- equalsin class- java.lang.Object
 
 - 
hashCodepublic int hashCode() - Overrides:
- hashCodein class- java.lang.Object
 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Object
 
 
- 
 
-