gluu
公開メンバ関数 | 非公開変数類 | 全メンバ一覧
org.gluu.credmanager.core.ldap.BaseLdapPerson クラス
org.gluu.credmanager.core.ldap.BaseLdapPerson の継承関係図
Inheritance graph
org.gluu.credmanager.core.ldap.BaseLdapPerson 連携図
Collaboration graph

公開メンバ関数

String getInum ()
 
String getUid ()
 

非公開変数類

ReadOnlyEntry ldapEntry
 
String [] inum
 
String [] uid
 

詳解

This class provides an implementation of an object that can be used to represent gluuPerson objects in the directory.

関数詳解

◆ getInum()

String org.gluu.credmanager.core.ldap.BaseLdapPerson.getInum ( )
inline

Retrieves the first value for the field associated with the inum attribute, if present.

戻り値
The first value for the field associated with the inum attribute, or
null
if that attribute was not present in the entry or does not have any values.
44  {
45  if ((inum == null) ||
46  (inum.length == 0))
47  {
48  return null;
49  }
50  else
51  {
52  return inum[0];
53  }
54  }
String [] inum
Definition: BaseLdapPerson.java:28

◆ getUid()

String org.gluu.credmanager.core.ldap.BaseLdapPerson.getUid ( )
inline

Retrieves the first value for the field associated with the uid attribute, if present.

戻り値
The first value for the field associated with the uid attribute, or
null
if that attribute was not present in the entry or does not have any values.
66  {
67  if ((uid== null) ||
68  (uid.length == 0))
69  {
70  return null;
71  }
72  else
73  {
74  return uid[0];
75  }
76  }
String [] uid
Definition: BaseLdapPerson.java:32

メンバ詳解

◆ inum

String [] org.gluu.credmanager.core.ldap.BaseLdapPerson.inum
private

◆ ldapEntry

ReadOnlyEntry org.gluu.credmanager.core.ldap.BaseLdapPerson.ldapEntry
private

◆ uid

String [] org.gluu.credmanager.core.ldap.BaseLdapPerson.uid
private

このクラス詳解は次のファイルから抽出されました: