1. /*
  2. * @(#)CORBAObjectImpl.java 1.14 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 com.sun.corba.se.internal.corba;
  16. //
  17. // Bare implementation of CORBA Object.
  18. //
  19. public class CORBAObjectImpl extends org.omg.CORBA_2_3.portable.ObjectImpl {
  20. public String[] _ids() {
  21. String[] typeids = new String[1];
  22. typeids[0] = "IDL:omg.org/CORBA/Object:1.0";
  23. return typeids;
  24. }
  25. }