Methods Summary |
---|
public Version | getClosestSupportedConnectionManagementVersion(Version connectionManagementVersion)Method returns closest to given connection management version, which current implementation supports
return this.connectionManagementVersion;
|
public Version | getClosestSupportedFramingVersion(Version framingVersion)Method returns closest to given framing version, which current implementation supports
return this.framingVersion;
|
public Version | getConnectionManagementVersion()
return connectionManagementVersion;
|
public Version | getFramingVersion()
return framingVersion;
|
public static com.sun.xml.ws.transport.tcp.util.VersionController | getInstance()
return instance;
|
public boolean | isVersionSupported(Version framingVersion, Version connectionManagementVersion)Method checks compatibility of server and client versions
return this.framingVersion.equals(framingVersion) &&
this.connectionManagementVersion.equals(connectionManagementVersion);
|