Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Norbert Klasen
JLDAP
Commits
b7e46e8c
Commit
b7e46e8c
authored
Jan 16, 2004
by
Sunil Kumar
Browse files
Documentation changes
parent
2d243d46
Changes
40
Expand all
Hide whitespace changes
Inline
Side-by-side
org/ietf/ldap/LDAPAttribute.java
View file @
b7e46e8c
...
...
@@ -20,7 +20,7 @@ import java.util.Enumeration;
/**
* Represents the name and values of one attribute of a directory entry.
*
* @see <a href="../../../../
doc
/com/novell/ldap/LDAPAttribute.html">
* @see <a href="../../../../
api
/com/novell/ldap/LDAPAttribute.html">
com.novell.ldap.LDAPAttribute</a>
*/
public
class
LDAPAttribute
implements
java
.
lang
.
Cloneable
,
...
...
@@ -46,8 +46,7 @@ public class LDAPAttribute implements java.lang.Cloneable,
* Constructs an attribute with copies of all values of the input
* attribute.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttribute.html
#LDAPAttribute(com.novell.ldap.LDAPAttribute)">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttribute.html#LDAPAttribute(com.novell.ldap.LDAPAttribute)">
com.novell.ldap.LDAPAttribute.LDAPAttribute(LDAPAttribute)</a>
*/
public
LDAPAttribute
(
LDAPAttribute
attr
)
...
...
@@ -63,8 +62,7 @@ public class LDAPAttribute implements java.lang.Cloneable,
/**
* Constructs an attribute with no values.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttribute.html
#LDAPAttribute(java.lang.String)">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttribute.html#LDAPAttribute(java.lang.String)">
com.novell.ldap.LDAPAttribute.LDAPAttribute(String)</a>
*/
public
LDAPAttribute
(
String
attrName
)
...
...
@@ -76,8 +74,7 @@ public class LDAPAttribute implements java.lang.Cloneable,
/**
* Constructs an attribute with a byte-formatted value.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttribute.html
#LDAPAttribute(java.lang.String, byte[])">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttribute.html#LDAPAttribute(java.lang.String, byte[])">
com.novell.ldap.LDAPAttribute.LDAPAttribute(String, byte[])</a>
*/
public
LDAPAttribute
(
String
attrName
,
byte
[]
attrBytes
)
...
...
@@ -89,8 +86,7 @@ public class LDAPAttribute implements java.lang.Cloneable,
/**
* Constructs an attribute that has a single string value.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttribute.html
#LDAPAttribute(java.lang.String, java.lang.String)">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttribute.html#LDAPAttribute(java.lang.String, java.lang.String)">
com.novell.ldap.LDAPAttribute.LDAPAttribute(String, String)</a>
*/
public
LDAPAttribute
(
String
attrName
,
String
attrString
)
...
...
@@ -102,8 +98,7 @@ public class LDAPAttribute implements java.lang.Cloneable,
/**
* Constructs an attribute that has an array of string values.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttribute.html
#LDAPAttribute(java.lang.String, java.lang.String[])">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttribute.html#LDAPAttribute(java.lang.String, java.lang.String[])">
com.novell.ldap.LDAPAttribute.LDAPAttribute(String, String[])</a>
*/
public
LDAPAttribute
(
String
attrName
,
String
[]
attrStrings
)
...
...
@@ -126,8 +121,7 @@ public class LDAPAttribute implements java.lang.Cloneable,
/**
* Adds a string value to the attribute.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttribute.html
#addValue(java.lang.String)">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttribute.html#addValue(java.lang.String)">
com.novell.ldap.LDAPAttribute.addValue(String)</a>
*/
public
void
addValue
(
String
attrString
)
...
...
@@ -139,8 +133,7 @@ public class LDAPAttribute implements java.lang.Cloneable,
/**
* Adds a byte-formatted value to the attribute.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttribute.html
#addValue(byte[])">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttribute.html#addValue(byte[])">
com.novell.ldap.LDAPAttribute.addValue(byte[])</a>
*/
public
void
addValue
(
byte
[]
attrBytes
)
...
...
@@ -153,8 +146,7 @@ public class LDAPAttribute implements java.lang.Cloneable,
* Returns an enumerator for the values of the attribute in byte
* format.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttribute.html
#getByteValues()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttribute.html#getByteValues()">
com.novell.ldap.LDAPAttribute.getByteValues()</a>
*/
public
Enumeration
getByteValues
()
...
...
@@ -165,8 +157,7 @@ public class LDAPAttribute implements java.lang.Cloneable,
/**
* Returns an enumerator for the string values of an attribute.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttribute.html
#getStringValues()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttribute.html#getStringValues()">
com.novell.ldap.LDAPAttribute.getStringValues()</a>
*/
public
Enumeration
getStringValues
()
...
...
@@ -177,8 +168,7 @@ public class LDAPAttribute implements java.lang.Cloneable,
/**
* Returns the values of the attribute as an array of bytes.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttribute.html
#getByteValueArray()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttribute.html#getByteValueArray()">
com.novell.ldap.LDAPAttribute.getByteValueArray()</a>
*/
public
byte
[][]
getByteValueArray
()
...
...
@@ -189,8 +179,7 @@ public class LDAPAttribute implements java.lang.Cloneable,
/**
* Returns the values of the attribute as an array of strings.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttribute.html
#getStringValueArray()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttribute.html#getStringValueArray()">
com.novell.ldap.LDAPAttribute.getStringValueArray()</a>
*/
public
String
[]
getStringValueArray
()
...
...
@@ -201,8 +190,7 @@ public class LDAPAttribute implements java.lang.Cloneable,
/**
* Returns the language subtype of the attribute, if any.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttribute.html
#getLangSubtype()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttribute.html#getLangSubtype()">
com.novell.ldap.LDAPAttribute.getLangSubtype()</a>
*/
public
String
getLangSubtype
()
...
...
@@ -213,8 +201,7 @@ public class LDAPAttribute implements java.lang.Cloneable,
/**
* Returns the base name of the attribute.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttribute.html
#getBaseName()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttribute.html#getBaseName()">
com.novell.ldap.LDAPAttribute.getBaseName()</a>
*/
public
String
getBaseName
()
...
...
@@ -225,8 +212,7 @@ public class LDAPAttribute implements java.lang.Cloneable,
/**
* Returns the base name of the specified attribute.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttribute.html
#getBaseName(java.lang.String)">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttribute.html#getBaseName(java.lang.String)">
com.novell.ldap.LDAPAttribute.getBaseName(String)</a>
*/
public
static
String
getBaseName
(
String
attrName
)
...
...
@@ -237,8 +223,7 @@ public class LDAPAttribute implements java.lang.Cloneable,
/**
* Returns the name of the attribute.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttribute.html
#getName()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttribute.html#getName()">
com.novell.ldap.LDAPAttribute.getName()</a>
*/
public
String
getName
()
...
...
@@ -249,8 +234,7 @@ public class LDAPAttribute implements java.lang.Cloneable,
/**
* Extracts the subtypes from the attribute name.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttribute.html
#getSubtypes()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttribute.html#getSubtypes()">
com.novell.ldap.LDAPAttribute.getSubtypes()</a>
*/
public
String
[]
getSubtypes
()
...
...
@@ -261,8 +245,7 @@ public class LDAPAttribute implements java.lang.Cloneable,
/**
* Extracts the subtypes from the specified attribute name.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttribute.html
#getSubtypes(java.lang.String)">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttribute.html#getSubtypes(java.lang.String)">
com.novell.ldap.LDAPAttribute.getSubtypes(String)</a>
*/
public
static
String
[]
getSubtypes
(
String
attrName
)
...
...
@@ -273,8 +256,7 @@ public class LDAPAttribute implements java.lang.Cloneable,
/**
* Reports if the attribute name contains the specified subtype.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttribute.html
#hasSubtype(java.lang.String)">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttribute.html#hasSubtype(java.lang.String)">
com.novell.ldap.LDAPAttribute.hasSubtype(String)</a>
*/
public
boolean
hasSubtype
(
String
subtype
)
...
...
@@ -285,8 +267,7 @@ public class LDAPAttribute implements java.lang.Cloneable,
/**
* Reports if the attribute name contains all the specified subtypes.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttribute.html
#hasSubtypes(java.lang.String[])">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttribute.html#hasSubtypes(java.lang.String[])">
com.novell.ldap.LDAPAttribute.hasSubtypes(String[])</a>
*/
public
boolean
hasSubtypes
(
String
[]
subtypes
)
...
...
@@ -297,8 +278,7 @@ public class LDAPAttribute implements java.lang.Cloneable,
/**
* Removes a string value from the attribute.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttribute.html
#removeValue(java.lang.String)">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttribute.html#removeValue(java.lang.String)">
com.novell.ldap.LDAPAttribute.removeValue(String)</a>
*/
public
void
removeValue
(
String
attrString
)
...
...
@@ -310,8 +290,7 @@ public class LDAPAttribute implements java.lang.Cloneable,
/**
* Removes a byte-formatted value from the attribute.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttribute.html
#removeValue(byte[])">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttribute.html#removeValue(byte[])">
com.novell.ldap.LDAPAttribute.removeValue(byte[])</a>
*/
public
void
removeValue
(
byte
[]
attrBytes
)
...
...
@@ -323,8 +302,7 @@ public class LDAPAttribute implements java.lang.Cloneable,
/**
* Returns the number of values in the attribute.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttribute.html
#size()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttribute.html#size()">
com.novell.ldap.LDAPAttribute.size()</a>
*/
public
int
size
()
...
...
@@ -335,8 +313,7 @@ public class LDAPAttribute implements java.lang.Cloneable,
/**
* Compares this object with the specified object for order.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttribute.html
#compareTo(java.lang.Object)">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttribute.html#compareTo(java.lang.Object)">
com.novell.ldap.LDAPAttribute.compareTo(Object)</a>
*/
public
int
compareTo
(
Object
attribute
)
...
...
@@ -348,8 +325,7 @@ public class LDAPAttribute implements java.lang.Cloneable,
/**
* Returns a clone of this object
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttribute.html
#clone()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttribute.html#clone()">
com.novell.ldap.LDAPAttribute.clone()</a>
*/
public
Object
clone
()
...
...
org/ietf/ldap/LDAPAttributeSchema.java
View file @
b7e46e8c
...
...
@@ -19,7 +19,7 @@ package org.ietf.ldap;
* Represents the schematic definition of a
* particular attribute in a particular Directory Server.
*
* @see <a href="../../../../
doc
/com/novell/ldap/LDAPAttributeSchema.html">
* @see <a href="../../../../
api
/com/novell/ldap/LDAPAttributeSchema.html">
com.novell.ldap.LDAPAttributeSchema</a>
*/
public
class
LDAPAttributeSchema
extends
LDAPSchemaElement
...
...
@@ -30,8 +30,7 @@ public class LDAPAttributeSchema extends LDAPSchemaElement
* Indicates that the attribute usage is for ordinary application
* or user data.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSchema.html
#USER_APPLICATIONS">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSchema.html#USER_APPLICATIONS">
com.novell.ldap.LDAPAttributeSchema.USER_APPLICATIONS</a>
*/
public
final
static
int
USER_APPLICATIONS
=
...
...
@@ -40,8 +39,7 @@ public class LDAPAttributeSchema extends LDAPSchemaElement
* Indicates that the attribute usage is for directory operations.
* Values are vendor specific.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSchema.html
#DIRECTORY_OPERATION">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSchema.html#DIRECTORY_OPERATION">
com.novell.ldap.LDAPAttributeSchema.DIRECTORY_OPERATION</a>
*/
public
final
static
int
DIRECTORY_OPERATION
=
...
...
@@ -51,8 +49,7 @@ public class LDAPAttributeSchema extends LDAPSchemaElement
* attributes. These hold server (DSA) information that is shared among
* servers holding replicas of the entry.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSchema.html
#DISTRIBUTED_OPERATION">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSchema.html#DISTRIBUTED_OPERATION">
com.novell.ldap.LDAPAttributeSchema.DISTRIBUTED_OPERATION</a>
*/
public
final
static
int
DISTRIBUTED_OPERATION
=
...
...
@@ -61,8 +58,7 @@ public class LDAPAttributeSchema extends LDAPSchemaElement
* Indicates that the attribute usage is for local operational attributes.
* These hold server (DSA) information that is local to a server.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSchema.html
#DSA_OPERATION">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSchema.html#DSA_OPERATION">
com.novell.ldap.LDAPAttributeSchema.DSA_OPERATION</a>
*/
public
final
static
int
DSA_OPERATION
=
...
...
@@ -83,8 +79,7 @@ public class LDAPAttributeSchema extends LDAPSchemaElement
* Constructs an attribute definition for adding to or deleting from a
* directory's schema.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSchema.html
#LDAPAttributeSchema(java.lang.string[], java.lang.String,
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSchema.html#LDAPAttributeSchema(java.lang.string[], java.lang.String,
java.lang.String, java.lang.String, boolean, java.lang.String,
boolean, java.lang.String, java.lang.String,
java.lang.String, boolean, boolean, int)">
...
...
@@ -110,8 +105,7 @@ public class LDAPAttributeSchema extends LDAPSchemaElement
* Constructs an attribute definition from the raw string value returned
* on a directory query for "attributetypes".
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSchema.html
#LDAPAttributeSchema(java.lang.string)">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSchema.html#LDAPAttributeSchema(java.lang.string)">
com.novell.ldap.LDAPAttributeSchema.LDAPAttributeSchema(String)</a>
*/
public
LDAPAttributeSchema
(
String
raw
)
...
...
@@ -125,8 +119,7 @@ public class LDAPAttributeSchema extends LDAPSchemaElement
* Returns the object identifer of the syntax of the attribute, in
* dotted numerical format.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSchema.html
#getSyntaxString()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSchema.html#getSyntaxString()">
com.novell.ldap.LDAPAttributeSchema.getSyntaxString()</a>
*/
public
String
getSyntaxString
()
...
...
@@ -138,8 +131,7 @@ public class LDAPAttributeSchema extends LDAPSchemaElement
* Returns the name of the attribute type which this attribute derives
* from, or null if there is no superior attribute.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSchema.html
#getSuperior()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSchema.html#getSuperior()">
com.novell.ldap.LDAPAttributeSchema.getSuperior()</a>
*/
public
String
getSuperior
()
...
...
@@ -150,8 +142,7 @@ public class LDAPAttributeSchema extends LDAPSchemaElement
/**
* Returns true if the attribute is single-valued.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSchema.html
#isSingleValued()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSchema.html#isSingleValued()">
com.novell.ldap.LDAPAttributeSchema.isSingleValued()</a>
*/
public
boolean
isSingleValued
()
...
...
@@ -162,8 +153,7 @@ public class LDAPAttributeSchema extends LDAPSchemaElement
/**
* Returns the matching rule for this attribute.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSchema.html
#getEqualityMatchingRule()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSchema.html#getEqualityMatchingRule()">
com.novell.ldap.LDAPAttributeSchema.getEqualityMatchingRule()</a>
*/
public
String
getEqualityMatchingRule
()
...
...
@@ -174,8 +164,7 @@ public class LDAPAttributeSchema extends LDAPSchemaElement
/**
* Returns the ordering matching rule for this attribute.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSchema.html
#getOrderingMatchingRule()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSchema.html#getOrderingMatchingRule()">
com.novell.ldap.LDAPAttributeSchema.getOrderingMatchingRule()</a>
*/
public
String
getOrderingMatchingRule
()
...
...
@@ -186,8 +175,7 @@ public class LDAPAttributeSchema extends LDAPSchemaElement
/**
* Returns the substring matching rule for this attribute.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSchema.html
#getSubstringMatchingRule()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSchema.html#getSubstringMatchingRule()">
com.novell.ldap.LDAPAttributeSchema.getSubstringMatchingRule()</a>
*/
public
String
getSubstringMatchingRule
()
...
...
@@ -198,8 +186,7 @@ public class LDAPAttributeSchema extends LDAPSchemaElement
/**
* Returns true if the attribute is a collective attribute.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSchema.html
#isCollective()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSchema.html#isCollective()">
com.novell.ldap.LDAPAttributeSchema.isCollective()</a>
*/
public
boolean
isCollective
()
...
...
@@ -210,8 +197,7 @@ public class LDAPAttributeSchema extends LDAPSchemaElement
/**
* Returns false if the attribute is read-only.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSchema.html
#isUserModifiable()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSchema.html#isUserModifiable()">
com.novell.ldap.LDAPAttributeSchema.isUserModifiable()</a>
*/
public
boolean
isUserModifiable
()
...
...
@@ -222,8 +208,7 @@ public class LDAPAttributeSchema extends LDAPSchemaElement
/**
* Returns the usage of the attribute.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSchema.html
#getUsage()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSchema.html#getUsage()">
com.novell.ldap.LDAPAttributeSchema.getUsage()</a>
*/
public
int
getUsage
()
...
...
org/ietf/ldap/LDAPAttributeSet.java
View file @
b7e46e8c
...
...
@@ -25,7 +25,7 @@ import java.util.Iterator;
* operation. <code>LDAPAttributeSet</code> may be also used to contruct an entry
* to be added to a directory.
*
* @see <a href="../../../../
doc
/com/novell/ldap/LDAPAttributeSet.html">
* @see <a href="../../../../
api
/com/novell/ldap/LDAPAttributeSet.html">
com.novell.ldap.LDAPAttributeSet</a>
*/
public
class
LDAPAttributeSet
implements
java
.
lang
.
Cloneable
,
...
...
@@ -46,8 +46,7 @@ public class LDAPAttributeSet implements java.lang.Cloneable,
/**
* Constructs an empty set of attributes.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSet.html
#LDAPAttributeSet()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSet.html#LDAPAttributeSet()">
com.novell.ldap.LDAPAttributeSet.LDAPAttributeSet()</a>
*/
public
LDAPAttributeSet
()
...
...
@@ -68,8 +67,7 @@ public class LDAPAttributeSet implements java.lang.Cloneable,
/**
* Returns a deep copy of this attribute set.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSet.html
#clone()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSet.html#clone()">
com.novell.ldap.LDAPAttributeSet.clone()</a>
*/
public
Object
clone
()
...
...
@@ -87,8 +85,7 @@ public class LDAPAttributeSet implements java.lang.Cloneable,
/**
* Returns the attribute matching the specified attrName.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSet.html
#getAttribute(java.lang.String)">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSet.html#getAttribute(java.lang.String)">
com.novell.ldap.LDAPAttributeSet.getAttribute(String)</a>
*/
public
LDAPAttribute
getAttribute
(
String
attrName
)
...
...
@@ -104,8 +101,7 @@ public class LDAPAttributeSet implements java.lang.Cloneable,
* Returns a single best-match attribute, or null if no match is
* available in the entry.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSet.html
#getAttribute(java.lang.String, java.lang.String)">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSet.html#getAttribute(java.lang.String, java.lang.String)">
com.novell.ldap.LDAPAttributeSet.getAttribute(String, String)</a>
*/
public
LDAPAttribute
getAttribute
(
String
attrName
,
String
lang
)
...
...
@@ -121,8 +117,7 @@ public class LDAPAttributeSet implements java.lang.Cloneable,
* Creates a new attribute set containing only the attributes that have
* the specified subtypes.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSet.html
#getSubset(java.lang.String)">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSet.html#getSubset(java.lang.String)">
com.novell.ldap.LDAPAttributeSet.getSubset(String)</a>
*/
public
LDAPAttributeSet
getSubset
(
String
subtype
)
...
...
@@ -135,8 +130,7 @@ public class LDAPAttributeSet implements java.lang.Cloneable,
/**
* Adds the specified attribute to this attribute set.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSet.html
#add(java.lang.Object)">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSet.html#add(java.lang.Object)">
com.novell.ldap.LDAPAttributeSet.add(Object)</a>
*/
public
boolean
add
(
Object
attr
)
...
...
@@ -164,8 +158,7 @@ public class LDAPAttributeSet implements java.lang.Cloneable,
/**
* Adds all the specified attributes to this attribute set.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSet.html
#addAll(java.util.Collection)">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSet.html#addAll(java.util.Collection)">
com.novell.ldap.LDAPAttributeSet.addAll(Collection)</a>
*/
public
boolean
addAll
(
java
.
util
.
Collection
attrs
)
...
...
@@ -176,8 +169,7 @@ public class LDAPAttributeSet implements java.lang.Cloneable,
/**
* Removes all the attributes from this attribute set.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSet.html
#clear()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSet.html#clear()">
com.novell.ldap.LDAPAttributeSet.clear()</a>
*/
public
void
clear
()
...
...
@@ -189,8 +181,7 @@ public class LDAPAttributeSet implements java.lang.Cloneable,
/**
* Returns true if this AttributeSet contains the specified Attribute.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSet.html
#contains(java.lang.Object)">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSet.html#contains(java.lang.Object)">
com.novell.ldap.LDAPAttributeSet.contains(Object)</a>
*/
public
boolean
contains
(
Object
attr
)
...
...
@@ -230,8 +221,7 @@ public class LDAPAttributeSet implements java.lang.Cloneable,
/**
* Returns true if there are no elements in this set.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSet.html
#isEmpty()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSet.html#isEmpty()">
com.novell.ldap.LDAPAttributeSet.isEmpty()</a>
*/
public
boolean
isEmpty
()
...
...
@@ -242,8 +232,7 @@ public class LDAPAttributeSet implements java.lang.Cloneable,
/**
* Returns an iterator over the elements of this set.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSet.html
#iterator()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSet.html#iterator()">
com.novell.ldap.LDAPAttributeSet.iterator()</a>
*/
public
Iterator
iterator
()
{
...
...
@@ -253,8 +242,7 @@ public class LDAPAttributeSet implements java.lang.Cloneable,
/**
* Removes the specified LDAPAttribute object from the set.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSet.html
#remove(java.lang.Object)">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSet.html#remove(java.lang.Object)">
com.novell.ldap.LDAPAttributeSet.remove(Object)</a>
*/
public
boolean
remove
(
Object
obj
)
...
...
@@ -286,8 +274,7 @@ public class LDAPAttributeSet implements java.lang.Cloneable,
/**
* Returns the number of attributes in this set.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAttributeSet.html
#size()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAttributeSet.html#size()">
com.novell.ldap.LDAPAttributeSet.size()</a>
*/
public
int
size
()
...
...
org/ietf/ldap/LDAPAuthHandler.java
View file @
b7e46e8c
...
...
@@ -19,7 +19,7 @@ package org.ietf.ldap;
* Used to provide authentication credentials when processing a
* referral.
*
* @see <a href="../../../../
doc
/com/novell/ldap/LDAPAuthHandler.html">
* @see <a href="../../../../
api
/com/novell/ldap/LDAPAuthHandler.html">
com.novell.ldap.LDAPAuthHandler</a>
*/
public
interface
LDAPAuthHandler
extends
LDAPReferralHandler
...
...
@@ -28,8 +28,7 @@ public interface LDAPAuthHandler extends LDAPReferralHandler
* Returns an object which can provide authentication credentials to
* a server at the specified host and port.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAuthHandler.html
#getRebindAuthentication(java.lang.String, int)">
* @see <a href="../../../../api/com/novell/ldap/LDAPAuthHandler.html#getRebindAuthentication(java.lang.String, int)">
com.novell.ldap.LDAPAuthHandler.getRebindAuthentication(
String, int)</a>
*/
...
...
org/ietf/ldap/LDAPAuthProvider.java
View file @
b7e46e8c
...
...
@@ -19,7 +19,7 @@ package org.ietf.ldap;
* This class encapsulates authentiation credentials for the specified
* host and port.
*
* @see <a href="../../../../
doc
/com/novell/ldap/LDAPAuthProvider.html">
* @see <a href="../../../../
api
/com/novell/ldap/LDAPAuthProvider.html">
com.novell.ldap.LDAPAuthProvider</a>
*/
public
class
LDAPAuthProvider
...
...
@@ -29,8 +29,7 @@ public class LDAPAuthProvider
* Constructs information that is used by the client for authentication
* when following referrals automatically.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAuthProvider.html
#LDAPAuthProvider(java.lang.String, java.lang.String)">
* @see <a href="../../../../api/com/novell/ldap/LDAPAuthProvider.html#LDAPAuthProvider(java.lang.String, java.lang.String)">
com.novell.ldap.LDAPAuthProvider.LDAPAuthProvider( String, String)</a>
*/
public
LDAPAuthProvider
(
String
dn
,
byte
[]
password
)
...
...
@@ -52,8 +51,7 @@ public class LDAPAuthProvider
* Returns the distinguished name to be used for authentication on
* automatic referral following.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAuthProvider.html
#getDN()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAuthProvider.html#getDN()">
com.novell.ldap.LDAPAuthProvider.getDN()</a>
*/
public
String
getDN
()
...
...
@@ -65,8 +63,7 @@ public class LDAPAuthProvider
* Returns the password to be used for authentication on automatic
* referral following.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPAuthProvider.html
#getPassword()">
* @see <a href="../../../../api/com/novell/ldap/LDAPAuthProvider.html#getPassword()">
com.novell.ldap.LDAPAuthProvider.getPassword()</a>
*/
public
byte
[]
getPassword
()
...
...
org/ietf/ldap/LDAPBindHandler.java
View file @
b7e46e8c
...
...
@@ -19,7 +19,7 @@ package org.ietf.ldap;
*
* Used to do explicit bind processing on a referral.
*
* @see <a href="../../../../
doc
/com/novell/ldap/LDAPBindHandler.html">
* @see <a href="../../../../
api
/com/novell/ldap/LDAPBindHandler.html">
com.novell.ldap.LDAPBindHandler</a>
*/
public
interface
LDAPBindHandler
extends
LDAPReferralHandler
...
...
@@ -28,8 +28,7 @@ public interface LDAPBindHandler extends LDAPReferralHandler
/**
* Called by LDAPConnection when a referral is received.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPBindHandler.html
#bind(java.lang.String[], com.novell.ldap.LDAPConnection)">
* @see <a href="../../../../api/com/novell/ldap/LDAPBindHandler.html#bind(java.lang.String[], com.novell.ldap.LDAPConnection)">
com.novell.ldap.LDAPBindHandler.bind(String[], LDAPConnection)</a>
*/
public
LDAPConnection
bind
(
String
[]
ldapurl
,
LDAPConnection
conn
)
...
...
org/ietf/ldap/LDAPCompareAttrNames.java
View file @
b7e46e8c
...
...
@@ -21,7 +21,7 @@ import java.util.Locale;
* An object of this class supports sorting search results by attribute
* name, in ascending or descending order.
*
* @see <a href="../../../../
doc
/com/novell/ldap/LDAPCompareAttrNames.html">
* @see <a href="../../../../
api
/com/novell/ldap/LDAPCompareAttrNames.html">
com.novell.ldap.CompareAttrNames</a>
*/
public
class
LDAPCompareAttrNames
implements
java
.
util
.
Comparator
...
...
@@ -42,8 +42,7 @@ public class LDAPCompareAttrNames implements java.util.Comparator
* Constructs an object that sorts results by a single attribute, in
* ascending order.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPCompareAttrNames.html
#LDAPCompareAttrNames(java.lang.String)">
* @see <a href="../../../../api/com/novell/ldap/LDAPCompareAttrNames.html#LDAPCompareAttrNames(java.lang.String)">
com.novell.ldap.LDAPCompareAttrNames.LDAPCompareAttrNames(String)</a>
*/
public
LDAPCompareAttrNames
(
String
attrName
)
...
...
@@ -56,8 +55,7 @@ public class LDAPCompareAttrNames implements java.util.Comparator
* Constructs an object that sorts results by a single attribute, in
* either ascending or descending order.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPCompareAttrNames.html
#LDAPCompareAttrNames(java.lang.String, boolean)">
* @see <a href="../../../../api/com/novell/ldap/LDAPCompareAttrNames.html#LDAPCompareAttrNames(java.lang.String, boolean)">
com.novell.ldap.LDAPCompareAttrNames.LDAPCompareAttrNames(String,
boolean)</a>
*/
...
...
@@ -73,8 +71,7 @@ public class LDAPCompareAttrNames implements java.util.Comparator
* Constructs an object that sorts by one or more attributes, in the
* order provided, in ascending order.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPCompareAttrNames.html
#LDAPCompareAttrNames(java.lang.String[])">
* @see <a href="../../../../api/com/novell/ldap/LDAPCompareAttrNames.html#LDAPCompareAttrNames(java.lang.String[])">
com.novell.ldap.LDAPCompareAttrNames.LDAPCompareAttrNames(String[])</a>
*/
public
LDAPCompareAttrNames
(
String
[]
attrNames
)
...
...
@@ -88,8 +85,7 @@ public class LDAPCompareAttrNames implements java.util.Comparator
* order provided, in either ascending or descending order for each
* attribute.
*
* @see <a href="../../../../doc/com/novell/ldap/LDAPCompareAttrNames.html
#LDAPCompareAttrNames(java.lang.String[], boolean[])">
* @see <a href="../../../../api/com/novell/ldap/LDAPCompareAttrNames.html#LDAPCompareAttrNames(java.lang.String[], boolean[])">