summaryrefslogtreecommitdiff
path: root/javax/naming/spi/StateFactory.java
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2005-11-27 18:28:17 +0000
committerTom Tromey <tromey@redhat.com>2005-11-27 18:28:17 +0000
commit6f383d9c78e81a535c35c5e69df90cd5a4d1dbfa (patch)
tree5a62e6c22cf42e0b60d3356bdccbdbc04a57dd9d /javax/naming/spi/StateFactory.java
parenta516b3950f9feb7433ec9d23d764306a56aad00b (diff)
downloadclasspath-6f383d9c78e81a535c35c5e69df90cd5a4d1dbfa.tar.gz
* javax/naming/spi/StateFactory.java (getStateToBind): Genericized.
* javax/naming/spi/Resolver.java (resolveToClass): Genericized. * javax/naming/spi/ObjectFactoryBuilder.java (createObjectFactory): Genericized. * javax/naming/spi/NamingManager.java (getInitialContext): Genericized. (getURLContext): Likewise. (getObjectInstance): Likewise. (getStateToBind): Likewise. * javax/naming/spi/InitialContextFactoryBuilder.java (createInitialContextFactory): Genericized. * javax/naming/spi/InitialContextFactory.java (getInitialContext): Genericized. * javax/naming/spi/DirectoryManager.java (getObjectInstance): Genericized. (getStateToBind): Likewise. * javax/naming/spi/DirStateFactory.java (getStateToBind): Genericized. * javax/naming/spi/ObjectFactory.java (getObjectInstance): Genericized. * javax/naming/spi/DirObjectFactory.java (getObjectInstance): Genericized. * javax/naming/ldap/LdapReferralException.java (getReferralContext): Genericized. * javax/naming/ldap/ControlFactory.java (getControlInstance): Genericized. * javax/naming/ldap/InitialLdapContext.java (InitialLdapContext): Genericized. * javax/naming/directory/DirContext.java (search): Genericized. * javax/naming/directory/Attributes.java (getAll): Genericized. (getIDs): Likewise. * javax/naming/directory/Attribute.java (getAll): Genericized. * javax/naming/directory/BasicAttribute.java (values): Genericized. (getAll): Likewise. * javax/naming/directory/InitialDirContext.java (InitialDirContext): Genericized. * javax/naming/ReferralException.java (getReferralContext): Genericized. * javax/naming/Name.java (getAll): Genericized. * javax/naming/Context.java (getEnvironment): Genericized. (list): Likewise. (listBindings): Likewise. * javax/naming/NamingEnumeration.java: Genericized. (next): Likewise. * javax/naming/Reference.java (addrs): Genericized. (getAll): Likewise. * javax/naming/CannotProceedException.java (environment): Genericized. (getEnvironment): Likewise. (setEnvironment): Likewise. * javax/naming/InitialContext.java (myProps): Genericized. (InitialContext): Likewise. (init): Likewise. * javax/naming/CompoundName.java (CompoundName): Genericized. * javax/naming/CompositeName.java (CompositeName): Genericized.
Diffstat (limited to 'javax/naming/spi/StateFactory.java')
-rw-r--r--javax/naming/spi/StateFactory.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/javax/naming/spi/StateFactory.java b/javax/naming/spi/StateFactory.java
index 1fbdeb1fa..af5ed11c7 100644
--- a/javax/naming/spi/StateFactory.java
+++ b/javax/naming/spi/StateFactory.java
@@ -51,5 +51,5 @@ import javax.naming.NamingException;
public interface StateFactory
{
Object getStateToBind(Object obj, Name name, Context nameCtx,
- Hashtable environment) throws NamingException;
+ Hashtable<?, ?> environment) throws NamingException;
}