IRISLIB database
Entry Class Reference

WARNING: This Class and its methods has been deprecated, please use the SYS.LDAP class. More...

Inheritance diagram for Entry:
Collaboration diagram for Entry:

Public Member Functions

_.Library.Status DeleteDN ()
 WARNING: This Class and its methods has been deprecated, please use the SYS.LDAP class. More...
 
_.Net.LDAP.Client.EditEntry EditEntry ()
 Edit/Modify current entry attributes. More...
 
_.Library.Boolean FirstAttrib ()
 Set the cursor to the first attribute. More...
 
_.Library.RawString GetAt (_.Library.String Key)
 Finds and returns the value of the Attribute associated with key. More...
 
_.Library.String GetAttribName ()
 Return current Attrib name.
 
_.Net.LDAP.Client.ValueList GetAttribValue (_.Library.Boolean binary)
 Return current Attrib ValueList. More...
 
_.Library.String GetDN ()
 Return DN (Distinguished Name)
 
_.Library.RawString GetNext (_.Library.RawString key)
 Moves to the next key (atrribute name) at the location in the iteration,. More...
 
_.Library.RawString Next (_.Library.RawString key)
 Returns the next atrribute name at the location in the iteration. More...
 
_.Library.Boolean NextAttrib ()
 Move the cursor to the next attribute. More...
 
- Public Member Functions inherited from RegisteredObject
_.Library.Status OnAddToSaveSet (_.Library.Integer depth, _.Library.Integer insert, _.Library.Integer callcount)
 This callback method is invoked when the current object is added to the SaveSet,. More...
 
_.Library.Status OnClose ()
 This callback method is invoked by the <METHOD>Close</METHOD> method to. More...
 
_.Library.Status OnConstructClone (_.Library.RegisteredObject object, _.Library.Boolean deep, _.Library.String cloned)
 This callback method is invoked by the <METHOD>ConstructClone</METHOD> method to. More...
 
_.Library.Status OnNew ()
 This callback method is invoked by the <METHOD>New</METHOD> method to. More...
 
_.Library.Status OnValidateObject ()
 This callback method is invoked by the <METHOD>ValidateObject</METHOD> method to. More...
 
- Public Member Functions inherited from AbstractIterator
_.Library.RawString GetAt (_.Library.RawString key)
 Definition of iterator methods that all our collections classes use to ensure consistency. More...
 

Additional Inherited Members

- Static Public Attributes inherited from RegisteredObject
 CAPTION = None
 Optional name used by the Form Wizard for a class when generating forms. More...
 
 JAVATYPE = None
 The Java type to be used when exported.
 
 PROPERTYVALIDATION = None
 This parameter controls the default validation behavior for the object. More...
 

Detailed Description

WARNING: This Class and its methods has been deprecated, please use the SYS.LDAP class.




Entry object with attributes. (see <class>Net.LDAP.Client.Entries</class>.GetCurEntry() Method)

Member Function Documentation

◆ DeleteDN()

_.Library.Status DeleteDN ( )

WARNING: This Class and its methods has been deprecated, please use the SYS.LDAP class.




Entry object with attributes. (see <class>Net.LDAP.Client.Entries</class>.GetCurEntry() Method)

Delete this entry. On success returns $$$OK, otherwise LDAP error.

◆ EditEntry()

Edit/Modify current entry attributes.

Returns EditEntry object, use the returned object to modify the attributes

◆ FirstAttrib()

_.Library.Boolean FirstAttrib ( )

Set the cursor to the first attribute.

Returns true if there is a first entry.

◆ GetAt()

Finds and returns the value of the Attribute associated with key.

GetAt returns the value of the element associated with key or null string ("") if no element is found.

◆ GetAttribValue()

_.Net.LDAP.Client.ValueList GetAttribValue ( _.Library.Boolean  binary)

Return current Attrib ValueList.

Returns "" if there is no attribute. $$$ISERR if failed to get the value, otherwise returns value list object.

◆ GetNext()

Moves to the next key (atrribute name) at the location in the iteration,.

and returns the associated value. If the key is a null string (""), it starts from the beginning. The value of key, which is passed by reference, is updated to the key value of the returned element or null string ("") if key is at the end of the array.

Reimplemented from AbstractIterator.

◆ Next()

Returns the next atrribute name at the location in the iteration.

If key is a null string (""), then Next returns the first attribute name

Reimplemented from AbstractIterator.

◆ NextAttrib()

_.Library.Boolean NextAttrib ( )

Move the cursor to the next attribute.

Returns false if there are no more attributes.