summaryrefslogtreecommitdiff
path: root/libjava/javax/naming/Context.java
blob: 8d3b9f6081323db7a86ba722079eca052ef9d39f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/* Copyright (C) 2000 Free Software Foundation

   This file is part of libgcj.

This software is copyrighted work licensed under the terms of the
Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
details.  */

package javax.naming;

public interface Context
{
  // Property with name of the inital context factory to use
  public static final String INITIAL_CONTEXT_FACTORY 
    = "java.naming.factory.initial";

  // Property with colon-separated list of object factories to use.
  public static final String OBJECT_FACTORIES
    = "java.naming.factory.object";

  // Property with colon-separated list of state factories to use.
  public static final String STATE_FACTORIES
    = "java.naming.factory.state";

  // Property with colon-separated list of package prefixes to use.
  public static final String URL_PKG_PREFIXES
    = "java.naming.factory.url.pkgs";

  // Property with URL specifying configuration for the service
  // provider to use.
  public static final String PROVIDER_URL 
    = "java.naming.provider.url";
  
  // Property with the DNS host and domain names to use.
  public static final String DNS_URL 
    = "java.naming.dns.url";
  
  // Property with the authoritativeness of the service requested.
  public static final String AUTHORITATIVE 
    = "java.naming.authoritative";
  
  // Property with the batch size to use when returning data via the
  // service's protocol.
  public static final String BATCHSIZE
    = "java.naming.batchsize";
  
  // Property defining how referrals encountered by the service
  // provider are to be processed.
  public static final String REFERRAL
    = "java.naming.referral";

  // Property specifying the security protocol to use.
  public static final String SECURITY_PROTOCOL
    = "java.naming.security.protocol";

  // Property specifying the security level to use.
  public static final String SECURITY_AUTHENTICATION
    = "java.naming.security.authentication";

  // Property for the identity of the principal for authenticating
  // the caller to the service.
  public static final String SECURITY_PRINCIPAL
    = "java.naming.security.principal";

  // Property specifying the credentials of the principal for
  // authenticating the caller to the service.
  public static final String SECURITY_CREDENTIAL
    = "java.naming.security.credentials";

  // Property for specifying the preferred language to use with the
  // service.
  public static final String LANGUAGE
    = "java.naming.language";

  // Property for the initial context constructor to use when searching
  // for other properties.
  public static final String APPLET
    = "java.naming.applet";

  public void bind (Name name, Object obj) throws NamingException;
  public void bind (String name, Object obj) throws NamingException;

  public Object lookup (Name name) throws NamingException;
  public Object lookup (String name) throws NamingException;

  public void rebind (Name name, Object obj) throws NamingException;
  public void rebind (String name, Object obj) throws NamingException;

  public void unbind (Name name) throws NamingException;
  public void unbind (String name) throws NamingException;

  public void rename (Name oldName, Name newName) throws NamingException;
  public void rename (String oldName, String newName) throws NamingException;

  public NamingEnumeration list (Name name) throws NamingException;
  public NamingEnumeration list (String name) throws NamingException;

  public NamingEnumeration listBindings (Name name) throws NamingException;
  public NamingEnumeration listBindings (String name) throws NamingException;

  public void destroySubcontext (Name name) throws NamingException;
  public void destroySubcontext (String name) throws NamingException;

  public Context createSubcontext (Name name) throws NamingException;
  public Context createSubcontext (String name) throws NamingException;

  public Object lookupLink (Name name) throws NamingException;
  public Object lookupLink (String name) throws NamingException;

  public NameParser getNameParser (Name name) throws NamingException;
  public NameParser getNameParser (String name) throws NamingException;

  public Name composeName (Name name, Name prefix) throws NamingException;
  public String composeName (String name, 
			     String prefix) throws NamingException;

  public Object addToEnvironment (String propName, 
				  Object propVal) throws NamingException;

  public Object removeFromEnvironment (String propName) throws NamingException;

  public Hashtable getEnvironment () throws NamingException;

  public void close () throws NamingException;

  public String getNameInNamespace () throws NamingException;
}