POAORB.java revision 608:7e06bf1dcb09
1158722Sflz/*
2158722Sflz * Copyright (c) 1997, 2003, Oracle and/or its affiliates. All rights reserved.
3158722Sflz * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4158722Sflz *
5158722Sflz * This code is free software; you can redistribute it and/or modify it
6158722Sflz * under the terms of the GNU General Public License version 2 only, as
7158722Sflz * published by the Free Software Foundation.  Oracle designates this
8158722Sflz * particular file as subject to the "Classpath" exception as provided
9158722Sflz * by Oracle in the LICENSE file that accompanied this code.
10158722Sflz *
11158722Sflz * This code is distributed in the hope that it will be useful, but WITHOUT
12158722Sflz * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13158722Sflz * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14158722Sflz * version 2 for more details (a copy is included in the LICENSE file that
15158722Sflz * accompanied this code).
16158722Sflz *
17158722Sflz * You should have received a copy of the GNU General Public License version
18158722Sflz * 2 along with this work; if not, write to the Free Software Foundation,
19158722Sflz * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20158722Sflz *
21158722Sflz * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22158722Sflz * or visit www.oracle.com if you need additional information or have any
23158722Sflz * questions.
24158722Sflz */
25158722Sflz
26158722Sflzpackage com.sun.corba.se.internal.POA;
27158722Sflz
28158722Sflz/**
29158722Sflz * Deprecated class for backward compatibility.
30158722Sflz */
31252310Shrspublic class POAORB extends com.sun.corba.se.internal.iiop.ORB
32158722Sflz{
33158722Sflz    public POAORB( )
34158722Sflz    {
35158722Sflz        super();
36158722Sflz    }
37158722Sflz}
38165683Syar