diff options
Diffstat (limited to 'libjava/javax/naming/directory/DirContext.java')
-rw-r--r-- | libjava/javax/naming/directory/DirContext.java | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/libjava/javax/naming/directory/DirContext.java b/libjava/javax/naming/directory/DirContext.java index aabad17..93f89cc 100644 --- a/libjava/javax/naming/directory/DirContext.java +++ b/libjava/javax/naming/directory/DirContext.java @@ -47,34 +47,34 @@ import javax.naming.*; public interface DirContext extends Context { - public static final int ADD_ATTRIBUTE = 1; - public static final int REPLACE_ATTRIBUTE = 2; - public static final int REMOVE_ATTRIBUTE = 3; + int ADD_ATTRIBUTE = 1; + int REPLACE_ATTRIBUTE = 2; + int REMOVE_ATTRIBUTE = 3; - public Attributes getAttributes (String name) throws NamingException; - public Attributes getAttributes (String name, String[] attrIds) throws NamingException; - public Attributes getAttributes (Name name) throws NamingException; - public Attributes getAttributes(Name name, String[] attrIds) throws NamingException; - public void modifyAttributes(Name name, int mod_op, Attributes attrs) throws NamingException; - public void modifyAttributes(String name, int mod_op, Attributes attrs) throws NamingException; - public void modifyAttributes(Name name, ModificationItem[] mods) throws NamingException; - public void modifyAttributes(String name, ModificationItem[] mods) throws NamingException; - public void bind(Name name, Object obj, Attributes attrs) throws NamingException; - public void bind(String name, Object obj, Attributes attrs) throws NamingException; - public void rebind(Name name, Object obj, Attributes attrs) throws NamingException; - public void rebind(String name, Object obj, Attributes attrs) throws NamingException; - public DirContext createSubcontext(Name name, Attributes attrs) throws NamingException; - public DirContext createSubcontext(String name, Attributes attrs) throws NamingException; - public DirContext getSchema(Name name) throws NamingException; - public DirContext getSchema(String name) throws NamingException; - public DirContext getSchemaClassDefinition(Name name) throws NamingException; - public DirContext getSchemaClassDefinition(String name) throws NamingException; - public NamingEnumeration search(Name name, Attributes matchingAttributes, String[] attributesToReturn) throws NamingException; - public NamingEnumeration search(String name, Attributes matchingAttributes, String[] attributesToReturn) throws NamingException; - public NamingEnumeration search(Name name, Attributes matchingAttributes) throws NamingException; - public NamingEnumeration search(String name, Attributes matchingAttributes) throws NamingException; - public NamingEnumeration search(Name name, String filter, SearchControls cons) throws NamingException; - public NamingEnumeration search(String name, String filter, SearchControls cons) throws NamingException; - public NamingEnumeration search(Name name, String filterExpr, Object[] filterArgs, SearchControls cons) throws NamingException; - public NamingEnumeration search(String name, String filterExpr, Object[] filterArgs, SearchControls cons) throws NamingException; + Attributes getAttributes (String name) throws NamingException; + Attributes getAttributes (String name, String[] attrIds) throws NamingException; + Attributes getAttributes (Name name) throws NamingException; + Attributes getAttributes(Name name, String[] attrIds) throws NamingException; + void modifyAttributes(Name name, int mod_op, Attributes attrs) throws NamingException; + void modifyAttributes(String name, int mod_op, Attributes attrs) throws NamingException; + void modifyAttributes(Name name, ModificationItem[] mods) throws NamingException; + void modifyAttributes(String name, ModificationItem[] mods) throws NamingException; + void bind(Name name, Object obj, Attributes attrs) throws NamingException; + void bind(String name, Object obj, Attributes attrs) throws NamingException; + void rebind(Name name, Object obj, Attributes attrs) throws NamingException; + void rebind(String name, Object obj, Attributes attrs) throws NamingException; + DirContext createSubcontext(Name name, Attributes attrs) throws NamingException; + DirContext createSubcontext(String name, Attributes attrs) throws NamingException; + DirContext getSchema(Name name) throws NamingException; + DirContext getSchema(String name) throws NamingException; + DirContext getSchemaClassDefinition(Name name) throws NamingException; + DirContext getSchemaClassDefinition(String name) throws NamingException; + NamingEnumeration search(Name name, Attributes matchingAttributes, String[] attributesToReturn) throws NamingException; + NamingEnumeration search(String name, Attributes matchingAttributes, String[] attributesToReturn) throws NamingException; + NamingEnumeration search(Name name, Attributes matchingAttributes) throws NamingException; + NamingEnumeration search(String name, Attributes matchingAttributes) throws NamingException; + NamingEnumeration search(Name name, String filter, SearchControls cons) throws NamingException; + NamingEnumeration search(String name, String filter, SearchControls cons) throws NamingException; + NamingEnumeration search(Name name, String filterExpr, Object[] filterArgs, SearchControls cons) throws NamingException; + NamingEnumeration search(String name, String filterExpr, Object[] filterArgs, SearchControls cons) throws NamingException; } |