Example usage for java.io Externalizable interface-usage

List of usage examples for java.io Externalizable interface-usage

Introduction

In this page you can find the example usage for java.io Externalizable interface-usage.

Usage

From source file com.akop.bach.util.SerializableCookie.java

public class SerializableCookie implements Cookie, Externalizable {
    private static final int NAME = 0x01;
    private static final int VALUE = 0x02;
    private static final int COMMENT = 0x04;
    private static final int COMMENT_URL = 0x08;
    private static final int EXPIRY_DATE = 0x10;

From source file org.apache.ibatis.executor.loader.AbstractSerialStateHolder.java

/**
 * @author Eduardo Macarron
 * @author Franta Mejta
 */
public abstract class AbstractSerialStateHolder implements Externalizable {

From source file com.openlapi.AddressInfo.java

/**
 * <p>
 * The AddressInfo class holds textual address information about a location. Typically the
 * information is e.g. street address. The information is divided into fields (e.g.
 * street, postal code, city, etc.). Defined field constants can be used to retrieve field
 * data.

From source file com.github.steveash.jg2p.align.ProbTable.java

/**
 * Table of probabilities from Xi to Yi
 *
 * @author Steve Ash
 */
public class ProbTable implements Iterable<Table.Cell<String, String, Double>>, Externalizable {

From source file LinkedList.java

/**
 * This is a simple linked linked implementation. Each node must implement
 * </code>LinkedListNode<code> so that it references the node before and after
 * it. This way a node can be removed without having to scan the list to find
 * it. This class does not provide an Iterator implementation as its designed
 * for efficiency and not genericity. There are a number of ways to iterate the

From source file com.ibm.sbt.services.client.base.datahandlers.EntityList.java

public abstract class EntityList<Entity extends BaseEntity> extends AbstractList<Entity>
        implements ResponseProvider, Externalizable {

    private Response requestData;
    private List<Entity> entities;

From source file org.openspaces.persistency.cassandra.meta.ColumnFamilyMetadata.java

/**
 * @author Dan Kilman
 * @since 9.1.1
 */
public class ColumnFamilyMetadata implements Externalizable {

From source file xbird.xquery.dm.value.sequence.EncodedSequence.java

/**
 * 
 * <DIV lang="en"></DIV>
 * <DIV lang="ja"></DIV>
 * 
 * @author Makoto YUI (yuin405+xbird@gmail.com)

From source file org.apache.axis2.addressing.RelatesTo.java

/**
 * Class RelatesTo
 */
public class RelatesTo implements Externalizable, SafeSerializable {

    /*

From source file org.lunarray.model.descriptor.model.extension.impl.ExtensionContainerImpl.java

/**
 * A container for extensions.
 * 
 * @author Pal Hargitai (pal@lunarray.org)
 */
public final class ExtensionContainerImpl implements Serializable, Externalizable, ExtensionContainer {