jdk/src/share/classes/javax/naming/package.html
author ohair
Wed, 26 May 2010 20:28:04 -0700
changeset 5551 327690766109
parent 5506 202f599c92aa
child 23712 d46a902c1aed
permissions -rw-r--r--
6956202: Fix a few missed rebranding issues, please contact lines etc. Reviewed-by: jjg, darcy, weijun
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
<html>
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
<head>
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
<!--
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     5
Copyright (c) 1999, 2006, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    10
published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    12
by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
5551
327690766109 6956202: Fix a few missed rebranding issues, please contact lines etc.
ohair
parents: 5506
diff changeset
    24
Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
327690766109 6956202: Fix a few missed rebranding issues, please contact lines etc.
ohair
parents: 5506
diff changeset
    25
or visit www.oracle.com if you need additional information or have any
327690766109 6956202: Fix a few missed rebranding issues, please contact lines etc.
ohair
parents: 5506
diff changeset
    26
questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
-->
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
</head>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
<body bgcolor="white">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
Provides the classes and interfaces for accessing naming services.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
This package defines the naming operations of the Java Naming and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
Directory Interface<font size=-2><sup>TM</sup></font> (JNDI). &nbsp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
JNDI provides naming and directory functionality to applications
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
written in the Java programming language.  It is designed to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
independent of any specific naming or directory service
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
implementation.  Thus a variety of services--new, emerging, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
already deployed ones--can be accessed in a common way.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
<h4>Context</h4>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
This package defines the notion of a <em>context</em>, represented
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
by the <tt>Context</tt> interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
A context consists of a set of name-to-object <em>bindings</em>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
<tt>Context</tt> is the core interface for looking up, binding, unbinding, 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
and renaming objects, and for creating and destroying subcontexts.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
<tt>lookup()</tt> is the most commonly used operation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
You supply <tt>lookup()</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
the name of the object you want
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
to look up, and it returns the object bound to that name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
For example, the following code fragment looks up 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
a printer and sends a document to the printer object
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
to be printed:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
<blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
<pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
Printer printer = (Printer)ctx.lookup("treekiller");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
printer.print(report);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
</pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
</blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
<h4>Names</h4>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
Every naming method in the <tt>Context</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
interface has two
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
overloads: one that accepts a 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
<tt>Name</tt> argument and one that accepts a string name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
<tt>Name</tt> is an interface that represents a generic 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
name--an ordered sequence of zero of more components.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
For these methods, <tt>Name</tt> can be used to represent a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
<em>composite name</em> (<tt>CompositeName</tt>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
so that you can name an object using a name which spans multiple namespaces.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
The overloads that accept <tt>Name</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
are useful for applications that need to manipulate names: composing
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
them, comparing components, and so on.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
The overloads that accept string names are likely to be more useful
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
for simple applications, such as those that simply read in a name
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
and look up the corresponding object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
<h4>Bindings</h4>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
The <tt>Binding</tt> class represents a name-to-object binding.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
It is a tuple containing the name of the bound object,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
the name of the object's class, and the object itself.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
The <tt>Binding</tt> class is actually a subclass of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
<tt>NameClassPair</tt>, which consists
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
simply of the object's name and the object's class name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
The <tt>NameClassPair</tt> is useful when you only want
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
information about the object's class and do not want to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
pay the extra cost of getting the object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
<h4>References</h4>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
Objects are stored in naming and directory services in different ways.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
If an object store supports storing Java objects, 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
it might support storing an object in its serialized form.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
However, some naming and directory services do not support the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
storing of Java objects. Furthermore, for some
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
objects in the directory, Java programs are but one group of applications 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
that access them. In this case, a serialized Java object might
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
not be the most appropriate representation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
JNDI defines a <em>reference</em>, represented by the <tt>Reference</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
class, which contains information on how to construct a copy of the object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
JNDI will attempt to turn references looked up from the directory
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
into the Java objects they represent, so that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
JNDI clients have the illusion that what
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
is stored in the directory are Java objects. 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
<h4>The Initial Context</h4>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
In JNDI, all naming and directory operations are performed relative
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
to a context. There are no absolute roots.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
Therefore JNDI defines an <em>initial context</em>, 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
<tt>InitialContext</tt>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
which provides a starting point for naming and directory operations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
Once you have an initial context, you can use it to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
look up other contexts and objects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
<h4>Exceptions</h4>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
JNDI defines a class hierarchy for exceptions that can be thrown in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
the course of performing naming and directory operations.  The root of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
this class hierarchy is <tt>NamingException</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
Programs interested in dealing with a particular exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
can catch the corresponding subclass of the exception.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
Otherwise, programs should catch <tt>NamingException</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
<h2>Package Specification</h2>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
The JNDI API Specification and related documents can be found in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
<a href="../../../technotes/guides/jndi/index.html">JNDI documentation</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
@since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
</body>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
</html>