javax.naming

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Natural Language Processing
51.Net
52.Parser
53.PDF
54.Portal
55.Profiler
56.Project Management
57.Report
58.RSS RDF
59.Rule Engine
60.Science
61.Scripting
62.Search Engine
63.Security
64.Sevlet Container
65.Source Control
66.Swing Library
67.Template Engine
68.Test Coverage
69.Testing
70.UML
71.Web Crawler
72.Web Framework
73.Web Mail
74.Web Server
75.Web Services
76.Web Services apache cxf 2.2.6
77.Web Services AXIS2
78.Wiki Engine
79.Workflow Engines
80.XML
81.XML UI
Java Source Code / Java Documentation  » Apache Harmony Java SE » javax package » javax.naming 
javax.naming
Java Source File NameTypeComment
AuthenticationException.javaClass An AuthenticationException is the NamingSecurityException used when authentication fails.
AuthenticationNotSupportedException.javaClass An AuthenticationNotSupportedException is the NamingSecurityException used when the authentication required is not available.
BinaryRefAddr.javaClass A BinaryRefAddr refers to an address which is represented by a binary address.
Binding.javaClass Binding extends NameClassPair to associate an object in a naming service with its name, specified class name and relative flag.
CannotProceedException.javaClass Naming operations throw a CannotProceedException when the service provider context implementation is resolving a name but reaches a name component that does not belong to the namespace of the current context.

The service provider is able to create a CannotProceedException object and use methods on that object (including baseclass methods) to provide full details of how far name resolution had progressed.

Typically, the methods used might include:

  • setEnvironment to record the environment from the current context
  • setAltNameCtx to record the current context
  • setResolvedObj to record the resolved object for the next naming system
  • setAltName to record the name of the resolved object
  • setRemainingName to record the remaining unresolved name

If the incomplete naming operation is rename, the service provider should also use the setRemainingNewName method to record the unresolved part of the new name.

The service provider can pass the CannotProceedException as a parameter to NamingManager methods such as getContinuationContext to attempt to locate another service provider for the next naming system.

CommunicationException.javaClass This is the NamingException used when communication with the naming or directory service fails.
CompositeName.javaClass A CompositeName represents a name in a naming service which spans multiple namespaces.
CompoundName.javaClass A CompoundName is a series of string elements, and it represents a name in a naming service within a single namespace.
ConfigurationException.javaClass This is the NamingException used when there is a problem encountered with the configuration.
Context.javaInterface The Context interface describes a naming context comprising a collection of bindings (see javax.naming.Binding) and methods for manipulating them.
ContextNotEmptyException.javaClass This is the NamingException used when trying to destroy a context which is not empty.
InitialContext.javaClass An InitialContext object is required as the starting context for any naming operations.
InsufficientResourcesException.javaClass This is the NamingException used when limited resources prevent completion of a request.
InterruptedNamingException.javaClass This is the NamingException used when an operation is interrupted.
InvalidNameException.javaClass An InvalidNameException is the NamingException used when a supplied name does not match the required format.
LimitExceededException.javaClass This is the NamingException used when a restriction is exceeded.
LinkException.javaClass Naming operations may throw a LinkException when attempting to resolve links.
LinkLoopException.javaClass This is the NamingException used when a link results in a loop or if too many links are being done.
LinkRef.javaClass This is a type of Reference used to point to an address of type "LinkAddress" where the address given is actually the string representation of a valid Name.
MalformedLinkException.javaClass This is the NamingException used when a link turns out to be malformed.
Name.javaInterface A Name interface represents a name in a naming service.

A name which implements this interface has a sequence of zero or more elements delimited by separators.

NameAlreadyBoundException.javaClass This is the NamingException used when trying to add a name which is already bound.
NameClassPair.javaClass NameClassPair associates a name in a naming service with a specified class name and also with a relative flag.
NameImpl.javaClass A class required to satisfy the requirement for an 'impl' field.
NameNotFoundException.javaClass This is the NamingException used when part of a name cannot be found.
NameParser.javaInterface A NameParser is used to validate and decompose a name from a particular namespace.
NamingEnumeration.javaInterface A NamingEnumeration interface is an Enumeration which has been extended to support NamingExceptions.
NamingException.javaClass A NamingException is the basic exception thrown by the naming classes.
NamingSecurityException.javaClass A NamingSecurityException is the NamingException used when a security exception is encountered.
NoInitialContextException.javaClass A NoInitialContextException is the exception thrown by the naming classes when an initial context cannot be created.
NoPermissionException.javaClass An NoPermissionException is the NamingSecurityException used when a server refuses permission to the client.
NotContextException.javaClass A NotContextException is the exception thrown by the naming classes when an operation on a context object cannot proceed because the resolved object is not a context type.
OperationNotSupportedException.javaClass This is the NamingException used when an operation is requested which is not supported.
PartialResultException.javaClass This is the NamingException used when an operation returns an incomplete result.
RefAddr.javaClass This is an abstract class describing the address of an object which is outside of a naming system.
Reference.javaClass A Reference contains the class of the object which is referenced together with a list of all the addresses at which this object may be found.
Referenceable.javaInterface An object which is not in a naming service, but can be referenced, implements the Referenceable interface.
ReferralException.javaClass A ReferralException is an abstract class used by service providers when dealing with referral exceptions.
ServiceUnavailableException.javaClass This is the NamingException used when a connection to a server cannot be established.
SizeLimitExceededException.javaClass This is the NamingException used when a size restriction is exceeded.
StringRefAddr.javaClass A StringRefAddr refers to an address which is represented by a string such as a URL or hostname.
TimeLimitExceededException.javaClass This is the NamingException used when a time restriction is exceeded.
w_ww___.__j___a_va_2_s._com_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.