1 /*2 * @(#)BoxedValueHelper.java 1.12 03/12/193 *4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.6 */7 /*8 * Licensed Materials - Property of IBM9 * RMI-IIOP v1.010 * Copyright IBM Corp. 1998 1999 All Rights Reserved11 *12 * US Government Users Restricted Rights - Use, duplication or13 * disclosure restricted by GSA ADP Schedule Contract with IBM Corp.14 */15 16 package org.omg.CORBA.portable;17 import java.io.Serializable ;18 19 public interface BoxedValueHelper {20 Serializable read_value(InputStream is);21 void write_value(OutputStream os, Serializable value);22 String get_id();23 }24