Example usage for java.io ObjectStreamConstants interface-usage

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

Introduction

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

Usage

From source file org.apache.axis2.context.externalize.DebugObjectInput.java

/**
 * DebugObjectInput delegates to an ObjectInput object.
 * Each method logs in/out trace information.
 */
public class DebugObjectInput implements ObjectInput, ObjectStreamConstants {

From source file org.apache.axis2.context.externalize.DebugObjectOutputStream.java

/**
 * DebugObjectOutputStream delegates to an ObjectOutput object.
 * Each method logs in/out trace information
 */
public class DebugObjectOutputStream implements ObjectStreamConstants, ObjectOutput {
    private static final Log log = LogFactory.getLog(DebugObjectOutputStream.class);

From source file org.apache.axis2.context.externalize.SafeObjectInputStream.java

/**
 * A SafeObjectInputStream reads data that was written by SafeObjectOutputStream
 * 
 * @see SafeObjectInput
 */
public class SafeObjectInputStream implements ObjectInput, ObjectStreamConstants {

From source file org.apache.axis2.context.externalize.SafeObjectOutputStream.java

/**
 * A SafeObjectOutputStream provides extra mechanisms to ensure that 
 * objects can be safely serialized to the ObjectOutput.
 * 
 * If an Object is written to a normal ObjectOutput, the ObjectOutput is left in 
 * an unknown state if a NotSerializableException occurs.