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

公開メンバ関数

String getDisplayName ()
 
DN getFirstGluuManagerGroupDN ()
 
DN [] getGluuManagerGroupDNs ()
 

非公開変数類

ReadOnlyEntry ldapEntry
 
String [] o
 
String displayName
 
DN [] gluuManagerGroup
 

詳解

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

関数詳解

◆ getDisplayName()

String org.gluu.credmanager.core.ldap.gluuOrganization.getDisplayName ( )
inline

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

戻り値
The value for the field associated with the displayName attribute, or
null
if the field does not have a value.
57  {
58  return displayName;
59  }
String displayName
Definition: gluuOrganization.java:40

◆ getFirstGluuManagerGroupDN()

DN org.gluu.credmanager.core.ldap.gluuOrganization.getFirstGluuManagerGroupDN ( )
inline

Retrieves the first value for the field associated with the gluuManagerGroup attribute as a DN, if present.

戻り値
The first value for the field associated with the gluuManagerGroup attribute, or
null
if that attribute was not present in the entry or does not have any values.
71  {
72  if ((gluuManagerGroup == null) ||
73  (gluuManagerGroup.length == 0))
74  {
75  return null;
76  }
77  else
78  {
79  return gluuManagerGroup[0];
80  }
81  }
DN [] gluuManagerGroup
Definition: gluuOrganization.java:46

◆ getGluuManagerGroupDNs()

DN [] org.gluu.credmanager.core.ldap.gluuOrganization.getGluuManagerGroupDNs ( )
inline

Retrieves the values for the field associated with the gluuManagerGroup attribute as DNs, if present.

戻り値
The values for the field associated with the gluuManagerGroup attribute, or
null
if that attribute was not present in the entry.
94  {
95  return gluuManagerGroup;
96  }
DN [] gluuManagerGroup
Definition: gluuOrganization.java:46

メンバ詳解

◆ displayName

String org.gluu.credmanager.core.ldap.gluuOrganization.displayName
private

◆ gluuManagerGroup

DN [] org.gluu.credmanager.core.ldap.gluuOrganization.gluuManagerGroup
private

◆ ldapEntry

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

◆ o

String [] org.gluu.credmanager.core.ldap.gluuOrganization.o
private

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