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

公開メンバ関数

String getMobileDevices ()
 
void setMobileDevices (final String... v)
 
String [] getMobile ()
 
List< String > getMobileAsList ()
 
void setMobile (final String... v)
 
String getInum ()
 
String getUid ()
 

非公開変数類

String [] oxMobileDevices
 
String [] mobile
 

詳解

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

◆ getMobile()

String [] org.gluu.credmanager.core.ldap.PersonMobile.getMobile ( )
inline

Retrieves the values for the field associated with the mobile attribute, if present.

戻り値
The values for the field associated with the mobile attribute, or
null
if that attribute was not present in the entry.
77  {
78  return mobile;
79  }
String [] mobile
Definition: PersonMobile.java:32

◆ getMobileAsList()

List<String> org.gluu.credmanager.core.ldap.PersonMobile.getMobileAsList ( )
inline
81  {
82  if (Utils.isEmpty(mobile)) {
83  return Collections.emptyList();
84  } else {
85  return Arrays.asList(mobile);
86  }
87  }
String [] mobile
Definition: PersonMobile.java:32

◆ getMobileDevices()

String org.gluu.credmanager.core.ldap.PersonMobile.getMobileDevices ( )
inline

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

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

◆ 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

◆ setMobile()

void org.gluu.credmanager.core.ldap.PersonMobile.setMobile ( final String...  v)
inline

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

引数
vThe values for the field associated with the oxRevision attribute.
97  {
98  this.mobile = v;
99  }
String [] mobile
Definition: PersonMobile.java:32

◆ setMobileDevices()

void org.gluu.credmanager.core.ldap.PersonMobile.setMobileDevices ( final String...  v)
inline

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

引数
vThe values for the field associated with the oxMobileDevices attribute.
64  {
65  this.oxMobileDevices = v;
66  }
String [] oxMobileDevices
Definition: PersonMobile.java:28

メンバ詳解

◆ mobile

String [] org.gluu.credmanager.core.ldap.PersonMobile.mobile
private

◆ oxMobileDevices

String [] org.gluu.credmanager.core.ldap.PersonMobile.oxMobileDevices
private

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