List of usage examples for java.io Externalizable interface-usage
From source file org.drools.compiler.CheeseEqual.java
public class CheeseEqual implements Externalizable { private static final long serialVersionUID = 510l; protected String type; protected int price; public CheeseEqual() {
From source file org.drools.CheeseEqual.java
public class CheeseEqual implements Externalizable { private static final long serialVersionUID = 510l; protected String type; protected int price; public void writeExternal(ObjectOutput out) throws IOException {
From source file org.drools.core.test.model.CheeseEqual.java
public class CheeseEqual implements Externalizable { private static final long serialVersionUID = 510l; protected String type; protected int price; public void writeExternal(ObjectOutput out) throws IOException {
From source file MainClass.java
class MyBean implements Externalizable { private int i; private String s; // No initialization public MyBean() {
From source file MutableBoolean.java
/**
*
* <DIV lang="en"></DIV>
* <DIV lang="ja"></DIV>
*
* @author Makoto YUI (yuin405+xbird@gmail.com)
From source file com.delphix.session.util.ProtocolVersion.java
/** * This class describes the protocol version. It consists of three fields, namely, major, minor, and revision. It * supports comparison operations between two versions in the precedence order of these version fields. */ public class ProtocolVersion implements Externalizable {
From source file com.delphix.session.service.ServiceNexusID.java
/** * This class describes a unique identifier for a service nexus. */ public class ServiceNexusID implements Externalizable { private ServiceTerminus client;
From source file se.sawano.java.security.otp.google.keyuri.parameters.Secret.java
/** * REQUIRED: The secret parameter is an arbitrary key value encoded in Base32 according to RFC 3548. * <p> * See https://github.com/google/google-authenticator/wiki/Key-Uri-Format#secret */ public final class Secret implements Parameter, Externalizable {
From source file com.delphix.session.impl.frame.SessionHandle.java
/** * This describes a handle to the session created by the server on behalf of the client. The handle remains opaque * except for the server who created it. The only supported operations on the handle are comparison and hash code. */ public class SessionHandle implements Externalizable {
From source file se.sawano.java.security.otp.SharedSecret.java
/**
* RFC4226 requires a shared secret with minimum length of 128 bits. And recommends the secret to be at leas 160 bits
* (20 bytes). This class takes an opinionated view and requires the secret to be at least 20 bytes.
*
* <p>
* This value object is a read-once object and it's value can only be read once.