javax.naming

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 geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
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.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.