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

公開メンバ関数

String getPreferredMethod ()
 
String getStrongAuthPolicy ()
 
String getTrustedDevicesInfo ()
 
void setPassword (final String userPassword)
 
void setPreferredMethod (final String method)
 
void setStrongAuthPolicy (String policy)
 
void setTrustedDevices (String trustedDevicesInfo)
 
String getInum ()
 
String getUid ()
 

非公開変数類

String [] userPassword
 
String [] oxPreferredMethod
 
String [] oxStrongAuthPolicy
 
String [] oxTrustedDevicesInfo
 

詳解

This class provides an implementation of an object that can be used to represent gluuPerson objects in the directory. It was generated by the generate-source-from-schema tool provided with the UnboundID LDAP SDK for Java. It may be customized as desired to better suit your needs.

関数詳解

◆ getInum()

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

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

◆ getPreferredMethod()

String org.gluu.credmanager.core.ldap.PersonPreferences.getPreferredMethod ( )
inline

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

戻り値
The first value for the field associated with the oxPreferredMethod attribute, or
null
if that attribute was not present in the entry or does not have any values.
48  {
49  if ((oxPreferredMethod == null) ||
50  (oxPreferredMethod.length == 0))
51  {
52  return null;
53  }
54  else
55  {
56  return oxPreferredMethod[0];
57  }
58  }
String [] oxPreferredMethod
Definition: PersonPreferences.java:26

◆ getStrongAuthPolicy()

String org.gluu.credmanager.core.ldap.PersonPreferences.getStrongAuthPolicy ( )
inline

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

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

◆ getTrustedDevicesInfo()

String org.gluu.credmanager.core.ldap.PersonPreferences.getTrustedDevicesInfo ( )
inline

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

戻り値
The first value for the field associated with the oxTrustedDevicesInfo attribute, or
null
if that attribute was not present in the entry or does not have any values.
92  {
93  if ((oxTrustedDevicesInfo == null) ||
94  (oxTrustedDevicesInfo.length == 0))
95  {
96  return null;
97  }
98  else
99  {
100  return oxTrustedDevicesInfo[0];
101  }
102  }
String [] oxTrustedDevicesInfo
Definition: PersonPreferences.java:36

◆ getUid()

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

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

◆ setPassword()

void org.gluu.credmanager.core.ldap.PersonPreferences.setPassword ( final String  userPassword)
inline

Sets the values for the field associated with the userPassword attribute.

引数
userPasswordThe values for the field associated with the userPassword attribute.
112  {
113  this.userPassword = Utils.stringArrayFrom(userPassword);
114  }
String [] userPassword
Definition: PersonPreferences.java:21

◆ setPreferredMethod()

void org.gluu.credmanager.core.ldap.PersonPreferences.setPreferredMethod ( final String  method)
inline
116  {
117  this.oxPreferredMethod = Utils.stringArrayFrom(method);
118  }
String [] oxPreferredMethod
Definition: PersonPreferences.java:26

◆ setStrongAuthPolicy()

void org.gluu.credmanager.core.ldap.PersonPreferences.setStrongAuthPolicy ( String  policy)
inline
120  {
121  this.oxStrongAuthPolicy = Utils.stringArrayFrom(policy);
122  }
String [] oxStrongAuthPolicy
Definition: PersonPreferences.java:31

◆ setTrustedDevices()

void org.gluu.credmanager.core.ldap.PersonPreferences.setTrustedDevices ( String  trustedDevicesInfo)
inline
124  {
125  this.oxTrustedDevicesInfo = Utils.stringArrayFrom(trustedDevicesInfo);
126  }
String [] oxTrustedDevicesInfo
Definition: PersonPreferences.java:36

メンバ詳解

◆ oxPreferredMethod

String [] org.gluu.credmanager.core.ldap.PersonPreferences.oxPreferredMethod
private

◆ oxStrongAuthPolicy

String [] org.gluu.credmanager.core.ldap.PersonPreferences.oxStrongAuthPolicy
private

◆ oxTrustedDevicesInfo

String [] org.gluu.credmanager.core.ldap.PersonPreferences.oxTrustedDevicesInfo
private

◆ userPassword

String [] org.gluu.credmanager.core.ldap.PersonPreferences.userPassword
private

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