Java Doc for DnsContext.java in  » 6.0-JDK-Modules-com.sun » jndi » com » sun » jndi » dns » Java Source Code / Java DocumentationJava Source Code and Java Documentation

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 » 6.0 JDK Modules com.sun » jndi » com.sun.jndi.dns 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.sun.jndi.toolkit.ctx.PartialCompositeContext
      com.sun.jndi.toolkit.ctx.ComponentContext
         com.sun.jndi.toolkit.ctx.AtomicContext
            com.sun.jndi.toolkit.ctx.PartialCompositeDirContext
               com.sun.jndi.toolkit.ctx.ComponentDirContext
                  com.sun.jndi.dns.DnsContext

DnsContext
public class DnsContext extends ComponentDirContext (Code)
A DnsContext is a directory context representing a DNS node.
author:
   Scott Seligman
version:
   1.30 07/05/05


Field Summary
public static  booleandebug
    
 DnsNamedomain
    
 Hashtableenvironment
    
final static  NameParsernameParser
    

Constructor Summary
public  DnsContext(String domain, String[] servers, Hashtable environment)
     Returns a DNS context for a given domain and servers.
 DnsContext(DnsContext ctx, DnsName domain)
    

Method Summary
public  ObjectaddToEnvironment(String propName, Object propVal)
    
public  voidc_bind(Name name, Object obj, Continuation cont)
    
public  voidc_bind(Name name, Object obj, Attributes attrs, Continuation cont)
    
public  Contextc_createSubcontext(Name name, Continuation cont)
    
public  DirContextc_createSubcontext(Name name, Attributes attrs, Continuation cont)
    
public  voidc_destroySubcontext(Name name, Continuation cont)
    
public  Attributesc_getAttributes(Name name, String[] attrIds, Continuation cont)
    
public  NameParserc_getNameParser(Name name, Continuation cont)
    
public  DirContextc_getSchema(Name name, Continuation cont)
    
public  DirContextc_getSchemaClassDefinition(Name name, Continuation cont)
    
public  NamingEnumerationc_list(Name name, Continuation cont)
    
public  NamingEnumerationc_listBindings(Name name, Continuation cont)
    
public  Objectc_lookup(Name name, Continuation cont)
    
public  Objectc_lookupLink(Name name, Continuation cont)
    
public  voidc_modifyAttributes(Name name, int mod_op, Attributes attrs, Continuation cont)
    
public  voidc_modifyAttributes(Name name, ModificationItem[] mods, Continuation cont)
    
public  voidc_rebind(Name name, Object obj, Continuation cont)
    
public  voidc_rebind(Name name, Object obj, Attributes attrs, Continuation cont)
    
public  voidc_rename(Name oldname, Name newname, Continuation cont)
    
public  NamingEnumerationc_search(Name name, Attributes matchingAttributes, String[] attributesToReturn, Continuation cont)
    
public  NamingEnumerationc_search(Name name, String filter, SearchControls cons, Continuation cont)
    
public  NamingEnumerationc_search(Name name, String filterExpr, Object[] filterArgs, SearchControls cons, Continuation cont)
    
public  voidc_unbind(Name name, Continuation cont)
    
public  voidclose()
    
public  NamecomposeName(Name name, Name prefix)
    
 DnsNamefullyQualify(Name name)
    
public  HashtablegetEnvironment()
    
public  StringgetNameInNamespace()
    
protected  Hashtablep_getEnvironment()
    
public  ObjectremoveFromEnvironment(String propName)
    
 voidsetProviderUrl(String url)
    

Field Detail
debug
public static boolean debug(Code)



domain
DnsName domain(Code)



environment
Hashtable environment(Code)



nameParser
final static NameParser nameParser(Code)




Constructor Detail
DnsContext
public DnsContext(String domain, String[] servers, Hashtable environment) throws NamingException(Code)
Returns a DNS context for a given domain and servers. Each server is of the form "server[:port]". IPv6 literal host names include delimiting brackets. There must be at least one server. The environment must not be null; it is cloned before being stored.



DnsContext
DnsContext(DnsContext ctx, DnsName domain)(Code)




Method Detail
addToEnvironment
public Object addToEnvironment(String propName, Object propVal) throws NamingException(Code)



c_bind
public void c_bind(Name name, Object obj, Continuation cont) throws NamingException(Code)



c_bind
public void c_bind(Name name, Object obj, Attributes attrs, Continuation cont) throws NamingException(Code)



c_createSubcontext
public Context c_createSubcontext(Name name, Continuation cont) throws NamingException(Code)



c_createSubcontext
public DirContext c_createSubcontext(Name name, Attributes attrs, Continuation cont) throws NamingException(Code)



c_destroySubcontext
public void c_destroySubcontext(Name name, Continuation cont) throws NamingException(Code)



c_getAttributes
public Attributes c_getAttributes(Name name, String[] attrIds, Continuation cont) throws NamingException(Code)



c_getNameParser
public NameParser c_getNameParser(Name name, Continuation cont) throws NamingException(Code)



c_getSchema
public DirContext c_getSchema(Name name, Continuation cont) throws NamingException(Code)



c_getSchemaClassDefinition
public DirContext c_getSchemaClassDefinition(Name name, Continuation cont) throws NamingException(Code)



c_list
public NamingEnumeration c_list(Name name, Continuation cont) throws NamingException(Code)



c_listBindings
public NamingEnumeration c_listBindings(Name name, Continuation cont) throws NamingException(Code)



c_lookup
public Object c_lookup(Name name, Continuation cont) throws NamingException(Code)



c_lookupLink
public Object c_lookupLink(Name name, Continuation cont) throws NamingException(Code)



c_modifyAttributes
public void c_modifyAttributes(Name name, int mod_op, Attributes attrs, Continuation cont) throws NamingException(Code)



c_modifyAttributes
public void c_modifyAttributes(Name name, ModificationItem[] mods, Continuation cont) throws NamingException(Code)



c_rebind
public void c_rebind(Name name, Object obj, Continuation cont) throws NamingException(Code)



c_rebind
public void c_rebind(Name name, Object obj, Attributes attrs, Continuation cont) throws NamingException(Code)



c_rename
public void c_rename(Name oldname, Name newname, Continuation cont) throws NamingException(Code)



c_search
public NamingEnumeration c_search(Name name, Attributes matchingAttributes, String[] attributesToReturn, Continuation cont) throws NamingException(Code)



c_search
public NamingEnumeration c_search(Name name, String filter, SearchControls cons, Continuation cont) throws NamingException(Code)



c_search
public NamingEnumeration c_search(Name name, String filterExpr, Object[] filterArgs, SearchControls cons, Continuation cont) throws NamingException(Code)



c_unbind
public void c_unbind(Name name, Continuation cont) throws NamingException(Code)



close
public void close()(Code)



composeName
public Name composeName(Name name, Name prefix) throws NamingException(Code)



fullyQualify
DnsName fullyQualify(Name name) throws NamingException(Code)



getEnvironment
public Hashtable getEnvironment() throws NamingException(Code)



getNameInNamespace
public String getNameInNamespace()(Code)



p_getEnvironment
protected Hashtable p_getEnvironment()(Code)



removeFromEnvironment
public Object removeFromEnvironment(String propName) throws NamingException(Code)



setProviderUrl
void setProviderUrl(String url)(Code)



Methods inherited from com.sun.jndi.toolkit.ctx.ComponentDirContext
abstract protected void c_bind(Name name, Object obj, Attributes attrs, Continuation cont) throws NamingException(Code)(Java Doc)
protected void c_bind_nns(Name name, Object obj, Attributes attrs, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected DirContext c_createSubcontext(Name name, Attributes attrs, Continuation cont) throws NamingException(Code)(Java Doc)
protected DirContext c_createSubcontext_nns(Name name, Attributes attrs, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected Attributes c_getAttributes(Name name, String[] attrIds, Continuation cont) throws NamingException(Code)(Java Doc)
protected Attributes c_getAttributes_nns(Name name, String[] attrIds, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected DirContext c_getSchema(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected DirContext c_getSchemaClassDefinition(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected DirContext c_getSchemaClassDefinition_nns(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected DirContext c_getSchema_nns(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected void c_modifyAttributes(Name name, int mod_op, Attributes attrs, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected void c_modifyAttributes(Name name, ModificationItem[] mods, Continuation cont) throws NamingException(Code)(Java Doc)
protected void c_modifyAttributes_nns(Name name, int mod_op, Attributes attrs, Continuation cont) throws NamingException(Code)(Java Doc)
protected void c_modifyAttributes_nns(Name name, ModificationItem[] mods, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected void c_rebind(Name name, Object obj, Attributes attrs, Continuation cont) throws NamingException(Code)(Java Doc)
protected void c_rebind_nns(Name name, Object obj, Attributes attrs, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected NamingEnumeration c_search(Name name, Attributes matchingAttributes, String[] attributesToReturn, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected NamingEnumeration c_search(Name name, String filter, SearchControls cons, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected NamingEnumeration c_search(Name name, String filterExpr, Object[] filterArgs, SearchControls cons, Continuation cont) throws NamingException(Code)(Java Doc)
protected NamingEnumeration c_search_nns(Name name, Attributes matchingAttributes, String[] attributesToReturn, Continuation cont) throws NamingException(Code)(Java Doc)
protected NamingEnumeration c_search_nns(Name name, String filter, SearchControls cons, Continuation cont) throws NamingException(Code)(Java Doc)
protected NamingEnumeration c_search_nns(Name name, String filterExpr, Object[] filterArgs, SearchControls cons, Continuation cont) throws NamingException(Code)(Java Doc)
protected void p_bind(Name name, Object obj, Attributes attrs, Continuation cont) throws NamingException(Code)(Java Doc)
protected DirContext p_createSubcontext(Name name, Attributes attrs, Continuation cont) throws NamingException(Code)(Java Doc)
protected Attributes p_getAttributes(Name name, String[] attrIds, Continuation cont) throws NamingException(Code)(Java Doc)
protected DirContext p_getSchema(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected DirContext p_getSchemaClassDefinition(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected void p_modifyAttributes(Name name, int mod_op, Attributes attrs, Continuation cont) throws NamingException(Code)(Java Doc)
protected void p_modifyAttributes(Name name, ModificationItem[] mods, Continuation cont) throws NamingException(Code)(Java Doc)
protected void p_rebind(Name name, Object obj, Attributes attrs, Continuation cont) throws NamingException(Code)(Java Doc)
protected NamingEnumeration p_search(Name name, Attributes matchingAttributes, String[] attributesToReturn, Continuation cont) throws NamingException(Code)(Java Doc)
protected NamingEnumeration p_search(Name name, String filter, SearchControls cons, Continuation cont) throws NamingException(Code)(Java Doc)
protected NamingEnumeration p_search(Name name, String filterExpr, Object[] filterArgs, SearchControls cons, Continuation cont) throws NamingException(Code)(Java Doc)

Methods inherited from com.sun.jndi.toolkit.ctx.PartialCompositeDirContext
protected void a_bind(String name, Object obj, Continuation cont) throws NamingException(Code)(Java Doc)
protected Context a_createSubcontext(String name, Continuation cont) throws NamingException(Code)(Java Doc)
protected void a_destroySubcontext(String name, Continuation cont) throws NamingException(Code)(Java Doc)
protected NameParser a_getNameParser(Continuation cont) throws NamingException(Code)(Java Doc)
protected NamingEnumeration a_list(Continuation cont) throws NamingException(Code)(Java Doc)
protected NamingEnumeration a_listBindings(Continuation cont) throws NamingException(Code)(Java Doc)
protected Object a_lookup(String name, Continuation cont) throws NamingException(Code)(Java Doc)
protected Object a_lookupLink(String name, Continuation cont) throws NamingException(Code)(Java Doc)
protected void a_rebind(String name, Object obj, Continuation cont) throws NamingException(Code)(Java Doc)
protected void a_rename(String oldname, Name newname, Continuation cont) throws NamingException(Code)(Java Doc)
protected void a_unbind(String name, Continuation cont) throws NamingException(Code)(Java Doc)
public void bind(String name, Object obj, Attributes attrs) throws NamingException(Code)(Java Doc)
public void bind(Name name, Object obj, Attributes attrs) throws NamingException(Code)(Java Doc)
protected StringHeadTail c_parseComponent(String inputName, Continuation cont) throws NamingException(Code)(Java Doc)
public DirContext createSubcontext(String name, Attributes attrs) throws NamingException(Code)(Java Doc)
public DirContext createSubcontext(Name name, Attributes attrs) throws NamingException(Code)(Java Doc)
public Attributes getAttributes(String name) throws NamingException(Code)(Java Doc)
public Attributes getAttributes(Name name) throws NamingException(Code)(Java Doc)
public Attributes getAttributes(String name, String[] attrIds) throws NamingException(Code)(Java Doc)
public Attributes getAttributes(Name name, String[] attrIds) throws NamingException(Code)(Java Doc)
protected static PartialCompositeDirContext getPCDirContext(Continuation cont) throws NamingException(Code)(Java Doc)
public DirContext getSchema(String name) throws NamingException(Code)(Java Doc)
public DirContext getSchema(Name name) throws NamingException(Code)(Java Doc)
public DirContext getSchemaClassDefinition(String name) throws NamingException(Code)(Java Doc)
public DirContext getSchemaClassDefinition(Name name) throws NamingException(Code)(Java Doc)
public void modifyAttributes(String name, int mod_op, Attributes attrs) throws NamingException(Code)(Java Doc)
public void modifyAttributes(Name name, int mod_op, Attributes attrs) throws NamingException(Code)(Java Doc)
public void modifyAttributes(String name, ModificationItem[] mods) throws NamingException(Code)(Java Doc)
public void modifyAttributes(Name name, ModificationItem[] mods) throws NamingException(Code)(Java Doc)
abstract protected void p_bind(Name name, Object obj, Attributes attrs, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected DirContext p_createSubcontext(Name name, Attributes attrs, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected Attributes p_getAttributes(Name name, String[] attrIds, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected DirContext p_getSchema(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected DirContext p_getSchemaClassDefinition(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected void p_modifyAttributes(Name name, int mod_op, Attributes attrs, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected void p_modifyAttributes(Name name, ModificationItem[] mods, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected void p_rebind(Name name, Object obj, Attributes attrs, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected NamingEnumeration p_search(Name name, Attributes matchingAttributes, String[] attributesToReturn, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected NamingEnumeration p_search(Name name, String filter, SearchControls cons, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected NamingEnumeration p_search(Name name, String filterExpr, Object[] filterArgs, SearchControls cons, Continuation cont) throws NamingException(Code)(Java Doc)
public void rebind(String name, Object obj, Attributes attrs) throws NamingException(Code)(Java Doc)
public void rebind(Name name, Object obj, Attributes attrs) throws NamingException(Code)(Java Doc)
public NamingEnumeration<SearchResult> search(String name, Attributes matchingAttributes) throws NamingException(Code)(Java Doc)
public NamingEnumeration<SearchResult> search(Name name, Attributes matchingAttributes) throws NamingException(Code)(Java Doc)
public NamingEnumeration<SearchResult> search(String name, Attributes matchingAttributes, String[] attributesToReturn) throws NamingException(Code)(Java Doc)
public NamingEnumeration<SearchResult> search(Name name, Attributes matchingAttributes, String[] attributesToReturn) throws NamingException(Code)(Java Doc)
public NamingEnumeration<SearchResult> search(String name, String filter, SearchControls cons) throws NamingException(Code)(Java Doc)
public NamingEnumeration<SearchResult> search(Name name, String filter, SearchControls cons) throws NamingException(Code)(Java Doc)
public NamingEnumeration<SearchResult> search(String name, String filterExpr, Object[] filterArgs, SearchControls cons) throws NamingException(Code)(Java Doc)
public NamingEnumeration<SearchResult> search(Name name, String filterExpr, Object[] filterArgs, SearchControls cons) throws NamingException(Code)(Java Doc)

Methods inherited from com.sun.jndi.toolkit.ctx.AtomicContext
abstract protected void a_bind(String name, Object obj, Continuation cont) throws NamingException(Code)(Java Doc)
protected void a_bind_nns(String name, Object obj, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected Context a_createSubcontext(String name, Continuation cont) throws NamingException(Code)(Java Doc)
protected Context a_createSubcontext_nns(String name, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected void a_destroySubcontext(String name, Continuation cont) throws NamingException(Code)(Java Doc)
protected void a_destroySubcontext_nns(String name, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected NameParser a_getNameParser(Continuation cont) throws NamingException(Code)(Java Doc)
protected NameParser a_getNameParser_nns(Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected NamingEnumeration a_list(Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected NamingEnumeration a_listBindings(Continuation cont) throws NamingException(Code)(Java Doc)
protected NamingEnumeration a_listBindings_nns(Continuation cont) throws NamingException(Code)(Java Doc)
protected NamingEnumeration a_list_nns(Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected Object a_lookup(String name, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected Object a_lookupLink(String name, Continuation cont) throws NamingException(Code)(Java Doc)
protected Object a_lookupLink_nns(String name, Continuation cont) throws NamingException(Code)(Java Doc)
protected Object a_lookup_nns(String name, Continuation cont) throws NamingException(Code)(Java Doc)
protected void a_processJunction_nns(String name, Continuation cont) throws NamingException(Code)(Java Doc)
protected void a_processJunction_nns(Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected void a_rebind(String name, Object obj, Continuation cont) throws NamingException(Code)(Java Doc)
protected void a_rebind_nns(String name, Object obj, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected void a_rename(String oldname, Name newname, Continuation cont) throws NamingException(Code)(Java Doc)
protected void a_rename_nns(String oldname, Name newname, Continuation cont) throws NamingException(Code)(Java Doc)
protected Object a_resolveIntermediate_nns(String name, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected void a_unbind(String name, Continuation cont) throws NamingException(Code)(Java Doc)
protected void a_unbind_nns(String name, Continuation cont) throws NamingException(Code)(Java Doc)
protected void c_bind(Name name, Object obj, Continuation cont) throws NamingException(Code)(Java Doc)
protected void c_bind_nns(Name name, Object obj, Continuation cont) throws NamingException(Code)(Java Doc)
protected Context c_createSubcontext(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected Context c_createSubcontext_nns(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected void c_destroySubcontext(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected void c_destroySubcontext_nns(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected NameParser c_getNameParser(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected NameParser c_getNameParser_nns(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected NamingEnumeration c_list(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected NamingEnumeration c_listBindings(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected NamingEnumeration c_listBindings_nns(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected NamingEnumeration c_list_nns(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected Object c_lookup(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected Object c_lookupLink(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected Object c_lookupLink_nns(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected Object c_lookup_nns(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected StringHeadTail c_parseComponent(String inputName, Continuation cont) throws NamingException(Code)(Java Doc)
protected void c_rebind(Name name, Object obj, Continuation cont) throws NamingException(Code)(Java Doc)
protected void c_rebind_nns(Name name, Object obj, Continuation cont) throws NamingException(Code)(Java Doc)
protected void c_rename(Name oldname, Name newname, Continuation cont) throws NamingException(Code)(Java Doc)
protected void c_rename_nns(Name oldname, Name newname, Continuation cont) throws NamingException(Code)(Java Doc)
protected Object c_resolveIntermediate_nns(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected void c_unbind(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected void c_unbind_nns(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected boolean isEmpty(String name)(Code)(Java Doc)
protected boolean resolve_to_context(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected void resolve_to_nns_and_continue(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected boolean resolve_to_penultimate_context(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected boolean resolve_to_penultimate_context_nns(Name name, Continuation cont) throws NamingException(Code)(Java Doc)

Fields inherited from com.sun.jndi.toolkit.ctx.ComponentContext
final protected static byte TERMINAL_COMPONENT(Code)(Java Doc)
final protected static byte TERMINAL_NNS_COMPONENT(Code)(Java Doc)
final protected static byte USE_CONTINUATION(Code)(Java Doc)

Methods inherited from com.sun.jndi.toolkit.ctx.ComponentContext
abstract protected void c_bind(Name name, Object obj, Continuation cont) throws NamingException(Code)(Java Doc)
protected void c_bind_nns(Name name, Object obj, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected Context c_createSubcontext(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected Context c_createSubcontext_nns(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected void c_destroySubcontext(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected void c_destroySubcontext_nns(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected NameParser c_getNameParser(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected NameParser c_getNameParser_nns(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected NamingEnumeration c_list(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected NamingEnumeration c_listBindings(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected NamingEnumeration c_listBindings_nns(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected NamingEnumeration c_list_nns(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected Object c_lookup(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected Object c_lookupLink(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected Object c_lookupLink_nns(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected Object c_lookup_nns(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected void c_processJunction_nns(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected void c_rebind(Name name, Object obj, Continuation cont) throws NamingException(Code)(Java Doc)
protected void c_rebind_nns(Name name, Object obj, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected void c_rename(Name oldname, Name newname, Continuation cont) throws NamingException(Code)(Java Doc)
protected void c_rename_nns(Name oldname, Name newname, Continuation cont) throws NamingException(Code)(Java Doc)
protected Object c_resolveIntermediate_nns(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected void c_unbind(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected void c_unbind_nns(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected boolean isAllEmpty(Name n)(Code)(Java Doc)
protected void p_bind(Name name, Object obj, Continuation cont) throws NamingException(Code)(Java Doc)
protected Context p_createSubcontext(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected void p_destroySubcontext(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected NameParser p_getNameParser(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected NamingEnumeration p_list(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected NamingEnumeration p_listBindings(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected Object p_lookup(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected Object p_lookupLink(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected HeadTail p_parseComponent(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected void p_rebind(Name name, Object obj, Continuation cont) throws NamingException(Code)(Java Doc)
protected void p_rename(Name oldName, Name newName, Continuation cont) throws NamingException(Code)(Java Doc)
protected HeadTail p_resolveIntermediate(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected ResolveResult p_resolveToClass(Name name, Class contextType, Continuation cont) throws NamingException(Code)(Java Doc)
protected void p_unbind(Name name, Continuation cont) throws NamingException(Code)(Java Doc)

Fields inherited from com.sun.jndi.toolkit.ctx.PartialCompositeContext
final protected static int _ATOMIC(Code)(Java Doc)
final protected static int _COMPONENT(Code)(Java Doc)
final protected static int _PARTIAL(Code)(Java Doc)
protected int _contextType(Code)(Java Doc)

Methods inherited from com.sun.jndi.toolkit.ctx.PartialCompositeContext
protected static boolean allEmpty(Name name)(Code)(Java Doc)
public void bind(String name, Object newObj) throws NamingException(Code)(Java Doc)
public void bind(Name name, Object newObj) throws NamingException(Code)(Java Doc)
public String composeName(String name, String prefix) throws NamingException(Code)(Java Doc)
public Name composeName(Name name, Name prefix) throws NamingException(Code)(Java Doc)
public Context createSubcontext(String name) throws NamingException(Code)(Java Doc)
public Context createSubcontext(Name name) throws NamingException(Code)(Java Doc)
public void destroySubcontext(String name) throws NamingException(Code)(Java Doc)
public void destroySubcontext(Name name) throws NamingException(Code)(Java Doc)
public NameParser getNameParser(String name) throws NamingException(Code)(Java Doc)
public NameParser getNameParser(Name name) throws NamingException(Code)(Java Doc)
protected static PartialCompositeContext getPCContext(Continuation cont) throws NamingException(Code)(Java Doc)
public NamingEnumeration<NameClassPair> list(String name) throws NamingException(Code)(Java Doc)
public NamingEnumeration<NameClassPair> list(Name name) throws NamingException(Code)(Java Doc)
public NamingEnumeration<Binding> listBindings(String name) throws NamingException(Code)(Java Doc)
public NamingEnumeration<Binding> listBindings(Name name) throws NamingException(Code)(Java Doc)
public Object lookup(String name) throws NamingException(Code)(Java Doc)
public Object lookup(Name name) throws NamingException(Code)(Java Doc)
public Object lookupLink(String name) throws NamingException(Code)(Java Doc)
public Object lookupLink(Name name) throws NamingException(Code)(Java Doc)
abstract protected void p_bind(Name name, Object obj, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected Context p_createSubcontext(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected void p_destroySubcontext(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
protected Hashtable p_getEnvironment() throws NamingException(Code)(Java Doc)
abstract protected NameParser p_getNameParser(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected NamingEnumeration p_list(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected NamingEnumeration p_listBindings(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected Object p_lookup(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected Object p_lookupLink(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected void p_rebind(Name name, Object obj, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected void p_rename(Name oldname, Name newname, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected ResolveResult p_resolveToClass(Name name, Class contextType, Continuation cont) throws NamingException(Code)(Java Doc)
abstract protected void p_unbind(Name name, Continuation cont) throws NamingException(Code)(Java Doc)
public void rebind(String name, Object newObj) throws NamingException(Code)(Java Doc)
public void rebind(Name name, Object newObj) throws NamingException(Code)(Java Doc)
public void rename(String oldName, String newName) throws NamingException(Code)(Java Doc)
public void rename(Name oldName, Name newName) throws NamingException(Code)(Java Doc)
public ResolveResult resolveToClass(String name, Class<? extends Context> contextType) throws NamingException(Code)(Java Doc)
public ResolveResult resolveToClass(Name name, Class<? extends Context> contextType) throws NamingException(Code)(Java Doc)
public void unbind(String name) throws NamingException(Code)(Java Doc)
public void unbind(Name name) throws NamingException(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.