1. /*
  2. * @(#)ValueBase.java 1.6 00/02/02
  3. *
  4. * Copyright 1999, 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. /*
  11. * Licensed Materials - Property of IBM
  12. * RMI-IIOP v1.0
  13. * Copyright IBM Corp. 1998 1999 All Rights Reserved
  14. *
  15. * US Government Users Restricted Rights - Use, duplication or
  16. * disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  17. */
  18. package org.omg.CORBA.portable;
  19. /**
  20. * The generated Java classes corresponding to valuetype IDL types
  21. * implement this interface. In other words, the Java mapping of
  22. * valuetype objects implement the ValueBase interface. The generated
  23. * Java class for valuetype's shall provide an implementation of the
  24. * ValueBase interface for the corresponding value type.
  25. * For value types that are streamable (i.e. non-custom),
  26. * the generated Java class shall also provide an implementation
  27. * for the org.omg.CORBA.portable.Streamable interface.
  28. * (CORBA::ValueBase is mapped to java.io.Serializable.)
  29. */
  30. public interface ValueBase extends IDLEntity {
  31. /**
  32. * Provides truncatable repository ids.
  33. * @return a String array--list of truncatable repository ids.
  34. */
  35. String[] _truncatable_ids();
  36. }