CORBAObjectImpl.java revision 608:7e06bf1dcb09
154359Sroberto/*
2182007Sroberto * Copyright (c) 1997, 2002, Oracle and/or its affiliates. All rights reserved.
354359Sroberto * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
454359Sroberto *
554359Sroberto * This code is free software; you can redistribute it and/or modify it
654359Sroberto * under the terms of the GNU General Public License version 2 only, as
754359Sroberto * published by the Free Software Foundation.  Oracle designates this
854359Sroberto * particular file as subject to the "Classpath" exception as provided
956746Sroberto * by Oracle in the LICENSE file that accompanied this code.
1054359Sroberto *
1154359Sroberto * This code is distributed in the hope that it will be useful, but WITHOUT
1254359Sroberto * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1354359Sroberto * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1454359Sroberto * version 2 for more details (a copy is included in the LICENSE file that
1554359Sroberto * accompanied this code).
1654359Sroberto *
1782498Sroberto * You should have received a copy of the GNU General Public License version
1882498Sroberto * 2 along with this work; if not, write to the Free Software Foundation,
1982498Sroberto * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20290000Sglebius *
21290000Sglebius * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22290000Sglebius * or visit www.oracle.com if you need additional information or have any
23290000Sglebius * questions.
24290000Sglebius */
2554359Sroberto/*
2654359Sroberto * Licensed Materials - Property of IBM
2754359Sroberto * RMI-IIOP v1.0
2854359Sroberto * Copyright IBM Corp. 1998 1999  All Rights Reserved
2954359Sroberto *
3054359Sroberto */
3154359Sroberto
3254359Srobertopackage com.sun.corba.se.impl.corba;
3354359Sroberto
3454359Sroberto//
3554359Sroberto// Bare implementation of CORBA Object.
3654359Sroberto//
3754359Srobertopublic class CORBAObjectImpl extends org.omg.CORBA_2_3.portable.ObjectImpl {
3854359Sroberto    public String[] _ids() {
3954359Sroberto        String[] typeids = new String[1];
4054359Sroberto        typeids[0] = "IDL:omg.org/CORBA/Object:1.0";
4154359Sroberto        return typeids;
4254359Sroberto    }
4354359Sroberto}
4454359Sroberto