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

公開メンバ関数

void setExternalUid (final String... v)
 
List< String > getExternalUids ()
 
String getOTPDevices ()
 
void setOTPDevices (final String value)
 
String getInum ()
 
String getUid ()
 

非公開変数類

String [] oxExternalUid
 
String [] oxOTPDevices
 

詳解

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.

関数詳解

◆ getExternalUids()

List<String> org.gluu.credmanager.core.ldap.PersonOTP.getExternalUids ( )
inline
45  {
46  return Utils.listfromArray(oxExternalUid);
47  }
String [] oxExternalUid
Definition: PersonOTP.java:26

◆ 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

◆ getOTPDevices()

String org.gluu.credmanager.core.ldap.PersonOTP.getOTPDevices ( )
inline

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

戻り値
The first value for the field associated with the oxOTPDevices attribute, or
null
if that attribute was not present in the entry or does not have any values.
60  {
61  if ((oxOTPDevices == null) ||
62  (oxOTPDevices.length == 0))
63  {
64  return null;
65  }
66  else
67  {
68  return oxOTPDevices[0];
69  }
70  }
String [] oxOTPDevices
Definition: PersonOTP.java:30

◆ 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

◆ setExternalUid()

void org.gluu.credmanager.core.ldap.PersonOTP.setExternalUid ( final String...  v)
inline

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

引数
vThe values for the field associated with the oxExternalUid attribute.
40  {
41  this.oxExternalUid = v;
42  }
String [] oxExternalUid
Definition: PersonOTP.java:26

◆ setOTPDevices()

void org.gluu.credmanager.core.ldap.PersonOTP.setOTPDevices ( final String  value)
inline

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

引数
valueThe values for the field associated with the oxOTPDevices attribute.
80  {
81  this.oxOTPDevices = new String[]{ value };
82  }
String [] oxOTPDevices
Definition: PersonOTP.java:30

メンバ詳解

◆ oxExternalUid

String [] org.gluu.credmanager.core.ldap.PersonOTP.oxExternalUid
private

◆ oxOTPDevices

String [] org.gluu.credmanager.core.ldap.PersonOTP.oxOTPDevices
private

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