corbanameURLContextFactory.java revision 820:9205e980062a
1189251Ssam/*
2189251Ssam * Copyright (c) 2000, 2001, Oracle and/or its affiliates. All rights reserved.
3252726Srpaulo * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4189251Ssam *
5252726Srpaulo * This code is free software; you can redistribute it and/or modify it
6252726Srpaulo * under the terms of the GNU General Public License version 2 only, as
7189251Ssam * published by the Free Software Foundation.  Oracle designates this
8189251Ssam * particular file as subject to the "Classpath" exception as provided
9189251Ssam * by Oracle in the LICENSE file that accompanied this code.
10189251Ssam *
11189251Ssam * This code is distributed in the hope that it will be useful, but WITHOUT
12214734Srpaulo * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13189251Ssam * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14189251Ssam * version 2 for more details (a copy is included in the LICENSE file that
15214734Srpaulo * accompanied this code).
16214734Srpaulo *
17214734Srpaulo * You should have received a copy of the GNU General Public License version
18214734Srpaulo * 2 along with this work; if not, write to the Free Software Foundation,
19214734Srpaulo * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20214734Srpaulo *
21214734Srpaulo * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22214734Srpaulo * or visit www.oracle.com if you need additional information or have any
23214734Srpaulo * questions.
24214734Srpaulo */
25214734Srpaulo
26214734Srpaulopackage com.sun.jndi.url.corbaname;
27214734Srpaulo
28214734Srpauloimport com.sun.jndi.url.iiop.iiopURLContextFactory;
29214734Srpaulo
30189251Ssam/**
31189251Ssam * A corbaname URL context factory.
32214734Srpaulo * It just uses the iiop URL context factory but is needed here
33214734Srpaulo * so that NamingManager.getURLContext() will find it.
34214734Srpaulo *
35214734Srpaulo * @author Rosanna Lee
36214734Srpaulo */
37214734Srpaulofinal public class corbanameURLContextFactory extends iiopURLContextFactory {
38214734Srpaulo}
39189251Ssam