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