oracle.kv.impl.util.registry.VersionedRemoteImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oracle-nosql-server Show documentation
Show all versions of oracle-nosql-server Show documentation
NoSQL Database Server - supplies build and runtime support for the server (store) side of the Oracle NoSQL Database.
/*-
* Copyright (C) 2011, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This file was distributed by Oracle as part of a version of Oracle NoSQL
* Database made available at:
*
* http://www.oracle.com/technetwork/database/database-technologies/nosqldb/downloads/index.html
*
* Please see the LICENSE file included in the top-level directory of the
* appropriate version of Oracle NoSQL Database for a copy of the license and
* additional information.
*/
package oracle.kv.impl.util.registry;
import oracle.kv.impl.security.annotations.PublicAPI;
import oracle.kv.impl.util.SerialVersion;
/**
* Base class for all service implementations.
*
* @see VersionedRemote
*/
@PublicAPI
public class VersionedRemoteImpl implements VersionedRemote {
private short serialVersion = SerialVersion.CURRENT;
@Override
public short getSerialVersion() {
return serialVersion;
}
/**
* Overrides the value returned by getSerialVersion for testing.
*/
public void setTestSerialVersion(short useSerialVersion) {
serialVersion = useSerialVersion;
}
/**
* Used by derived classes to signal an implementation error that allowed
* a deprecated R2 RMI interface method to be directly accessed.
*/
protected RuntimeException invalidR2MethodException() {
return new UnsupportedOperationException(
"Calls to this method must be made through the proxy interface.");
}
/**
* Check whether the client meets the specified minimum required version.
*
* @param clientSerialVersion the serial version of the client
* @param requiredSerialVersion the minimum required version
* @throws UnsupportedOperationException if the requirement is not met
*/
protected void checkClientSupported(short clientSerialVersion,
short requiredSerialVersion) {
if (clientSerialVersion < requiredSerialVersion) {
throw SerialVersion.clientUnsupportedException(
clientSerialVersion, requiredSerialVersion);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy