ORBTypeComponent.java revision 608:7e06bf1dcb09
1248590Smm/*
2248590Smm * Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
3248590Smm * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4248590Smm *
5248590Smm * This code is free software; you can redistribute it and/or modify it
6248590Smm * under the terms of the GNU General Public License version 2 only, as
7248590Smm * published by the Free Software Foundation.  Oracle designates this
8248590Smm * particular file as subject to the "Classpath" exception as provided
9248590Smm * by Oracle in the LICENSE file that accompanied this code.
10248590Smm *
11248590Smm * This code is distributed in the hope that it will be useful, but WITHOUT
12248590Smm * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13248590Smm * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14248590Smm * version 2 for more details (a copy is included in the LICENSE file that
15248590Smm * accompanied this code).
16248590Smm *
17248590Smm * You should have received a copy of the GNU General Public License version
18248590Smm * 2 along with this work; if not, write to the Free Software Foundation,
19248590Smm * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20248590Smm *
21248590Smm * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22248590Smm * or visit www.oracle.com if you need additional information or have any
23248590Smm * questions.
24248590Smm */
25248590Smm
26248590Smmpackage com.sun.corba.se.spi.ior.iiop;
27248590Smm
28248590Smmimport com.sun.corba.se.spi.ior.TaggedComponent ;
29248590Smm
30248590Smm/**
31248590Smm * @author Ken Cavanaugh
32248590Smm */
33248590Smmpublic interface ORBTypeComponent extends TaggedComponent
34248590Smm{
35248590Smm    public int getORBType() ;
36248590Smm}
37248590Smm