1. /*
  2. * @(#)IDLEntity.java 1.10 03/01/23
  3. *
  4. * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package org.omg.CORBA.portable;
  8. /**
  9. * An interface with no members whose only purpose is to serve as a marker
  10. * indicating that an implementing class is a
  11. * Java value type from IDL that has a corresponding Helper class.
  12. * RMI IIOP serialization looks for such a marker to perform
  13. * marshalling/unmarshalling.
  14. **/
  15. public interface IDLEntity extends java.io.Serializable {
  16. }