1. /*
  2. * @(#)IDLEntity.java 1.7 00/02/02
  3. *
  4. * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package org.omg.CORBA.portable;
  11. /**
  12. * An interface with no members whose only purpose is to serve as a marker
  13. * indicating that an implementing class is a
  14. * Java value type from IDL that has a corresponding Helper class.
  15. * RMI IIOP serialization looks for such a marker to perform
  16. * marshalling/unmarshalling.
  17. **/
  18. public interface IDLEntity extends java.io.Serializable {
  19. }