aboutsummaryrefslogtreecommitdiff
path: root/libjava/javax/naming/Context.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2003-10-11 19:06:23 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2003-10-11 19:06:23 +0000
commit547f7f8b9d220841cdd48fe4d09ca6c3add17faf (patch)
treedfc31bec41ff38fa6478e0716f104c6f8d4b5405 /libjava/javax/naming/Context.java
parent7ef0daad61a23ce02d461cac50b9eb1a67ef80dd (diff)
downloadgcc-547f7f8b9d220841cdd48fe4d09ca6c3add17faf.zip
gcc-547f7f8b9d220841cdd48fe4d09ca6c3add17faf.tar.gz
gcc-547f7f8b9d220841cdd48fe4d09ca6c3add17faf.tar.bz2
Context.java, [...]: Removing redundant modifiers.
2003-10-11 Michael Koch <konqueror@gmx.de> * javax/naming/Context.java, javax/naming/Name.java, javax/naming/NameParser.java, javax/naming/NamingEnumeration.java, javax/naming/Referenceable.java, javax/naming/directory/Attribute.java, javax/naming/directory/Attributes.java, javax/naming/directory/DirContext.java, javax/naming/event/EventContext.java, javax/naming/event/EventDirContext.java, javax/naming/event/NamespaceChangeListener.java, javax/naming/event/NamingListener.java, javax/naming/event/ObjectChangeListener.java, javax/naming/ldap/Control.java, javax/naming/ldap/ExtendedRequest.java, javax/naming/ldap/ExtendedResponse.java, javax/naming/ldap/HasControls.java, javax/naming/ldap/LdapContext.java, javax/naming/ldap/UnsolicitedNotification.java, javax/naming/ldap/UnsolicitedNotificationListener.java, javax/naming/spi/DirObjectFactory.java, javax/naming/spi/DirStateFactory.java, javax/naming/spi/InitialContextFactory.java, javax/naming/spi/InitialContextFactoryBuilder.java, javax/naming/spi/ObjectFactory.java, javax/naming/spi/ObjectFactoryBuilder.java, javax/naming/spi/Resolver.java, javax/naming/spi/StateFactory.java: Removing redundant modifiers. From-SVN: r72362
Diffstat (limited to 'libjava/javax/naming/Context.java')
-rw-r--r--libjava/javax/naming/Context.java88
1 files changed, 44 insertions, 44 deletions
diff --git a/libjava/javax/naming/Context.java b/libjava/javax/naming/Context.java
index 5720dc4..b1b621d 100644
--- a/libjava/javax/naming/Context.java
+++ b/libjava/javax/naming/Context.java
@@ -43,118 +43,118 @@ import java.util.Hashtable;
public interface Context
{
// Property with name of the inital context factory to use
- public static final String INITIAL_CONTEXT_FACTORY
+ String INITIAL_CONTEXT_FACTORY
= "java.naming.factory.initial";
// Property with colon-separated list of object factories to use.
- public static final String OBJECT_FACTORIES
+ String OBJECT_FACTORIES
= "java.naming.factory.object";
// Property with colon-separated list of state factories to use.
- public static final String STATE_FACTORIES
+ String STATE_FACTORIES
= "java.naming.factory.state";
// Property with colon-separated list of package prefixes to use.
- public static final String URL_PKG_PREFIXES
+ 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
+ String PROVIDER_URL
= "java.naming.provider.url";
// Property with the DNS host and domain names to use.
- public static final String DNS_URL
+ String DNS_URL
= "java.naming.dns.url";
// Property with the authoritativeness of the service requested.
- public static final String AUTHORITATIVE
+ 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
+ String BATCHSIZE
= "java.naming.batchsize";
// Property defining how referrals encountered by the service
// provider are to be processed.
- public static final String REFERRAL
+ String REFERRAL
= "java.naming.referral";
// Property specifying the security protocol to use.
- public static final String SECURITY_PROTOCOL
+ String SECURITY_PROTOCOL
= "java.naming.security.protocol";
// Property specifying the security level to use.
- public static final String SECURITY_AUTHENTICATION
+ 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
+ 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_CREDENTIALS
+ String SECURITY_CREDENTIALS
= "java.naming.security.credentials";
// Property for specifying the preferred language to use with the
// service.
- public static final String LANGUAGE
+ String LANGUAGE
= "java.naming.language";
// Property for the initial context constructor to use when searching
// for other properties.
- public static final String APPLET
+ String APPLET
= "java.naming.applet";
- public void bind (Name name, Object obj) throws NamingException;
- public void bind (String name, Object obj) throws NamingException;
+ void bind (Name name, Object obj) throws NamingException;
+ void bind (String name, Object obj) throws NamingException;
- public Object lookup (Name name) throws NamingException;
- public Object lookup (String name) throws NamingException;
+ Object lookup (Name name) throws NamingException;
+ Object lookup (String name) throws NamingException;
- public void rebind (Name name, Object obj) throws NamingException;
- public void rebind (String name, Object obj) throws NamingException;
+ void rebind (Name name, Object obj) throws NamingException;
+ void rebind (String name, Object obj) throws NamingException;
- public void unbind (Name name) throws NamingException;
- public void unbind (String name) throws NamingException;
+ void unbind (Name name) throws NamingException;
+ void unbind (String name) throws NamingException;
- public void rename (Name oldName, Name newName) throws NamingException;
- public void rename (String oldName, String newName) throws NamingException;
+ void rename (Name oldName, Name newName) throws NamingException;
+ void rename (String oldName, String newName) throws NamingException;
- public NamingEnumeration list (Name name) throws NamingException;
- public NamingEnumeration list (String name) throws NamingException;
+ NamingEnumeration list (Name name) throws NamingException;
+ NamingEnumeration list (String name) throws NamingException;
- public NamingEnumeration listBindings (Name name) throws NamingException;
- public NamingEnumeration listBindings (String name) throws NamingException;
+ NamingEnumeration listBindings (Name name) throws NamingException;
+ NamingEnumeration listBindings (String name) throws NamingException;
- public void destroySubcontext (Name name) throws NamingException;
- public void destroySubcontext (String name) throws NamingException;
+ void destroySubcontext (Name name) throws NamingException;
+ void destroySubcontext (String name) throws NamingException;
- public Context createSubcontext (Name name) throws NamingException;
- public Context createSubcontext (String name) throws NamingException;
+ Context createSubcontext (Name name) throws NamingException;
+ Context createSubcontext (String name) throws NamingException;
- public Object lookupLink (Name name) throws NamingException;
- public Object lookupLink (String name) throws NamingException;
+ Object lookupLink (Name name) throws NamingException;
+ Object lookupLink (String name) throws NamingException;
- public NameParser getNameParser (Name name) throws NamingException;
- public NameParser getNameParser (String name) throws NamingException;
+ NameParser getNameParser (Name name) throws NamingException;
+ NameParser getNameParser (String name) throws NamingException;
- public Name composeName (Name name, Name prefix) throws NamingException;
- public String composeName (String name,
+ Name composeName (Name name, Name prefix) throws NamingException;
+ String composeName (String name,
String prefix) throws NamingException;
- public Object addToEnvironment (String propName,
+ Object addToEnvironment (String propName,
Object propVal) throws NamingException;
- public Object removeFromEnvironment (String propName) throws NamingException;
+ Object removeFromEnvironment (String propName) throws NamingException;
- public Hashtable getEnvironment () throws NamingException;
+ Hashtable getEnvironment () throws NamingException;
- public void close () throws NamingException;
+ void close () throws NamingException;
- public String getNameInNamespace () throws NamingException;
+ String getNameInNamespace () throws NamingException;
}