gluu
公開メンバ関数 | 限定公開変数類 | 非公開変数類 | 静的非公開変数類 | 全メンバ一覧
org.gluu.oxtrust.model.GluuCustomPerson クラス
org.gluu.oxtrust.model.GluuCustomPerson の継承関係図
Inheritance graph
org.gluu.oxtrust.model.GluuCustomPerson 連携図
Collaboration graph

公開メンバ関数

String getOxMobileDevices ()
 
void setOxMobileDevices (String oxMobileDevices)
 
OTPDevice getOxOTPDevices ()
 
void setOxOTPDevices (OTPDevice oxOTPDevices)
 
String getIname ()
 
void setIname (String value)
 
String getMail ()
 
void setMail (String value)
 
String getGluuIMAPData ()
 
void setGluuIMAPData (String value)
 
String getNetworkPoken ()
 
void setNetworkPoken (String value)
 
String getCommonName ()
 
void setCommonName (String value)
 
String getGivenName ()
 
void setGivenName (String value)
 
GluuStatus getStatus ()
 
void setStatus (GluuStatus value)
 
String getUserPassword ()
 
void setUserPassword (String value)
 
boolean isSelected ()
 
void setSelected (boolean selected)
 
GluuBoolean getSLAManager ()
 
void setSLAManager (GluuBoolean value)
 
List< String > getMemberOf ()
 
void setMemberOf (List< String > value)
 
String getSurname ()
 
void setSurname (String value)
 
void setTimezone (String value)
 
String getTimezone ()
 
void setPreferredLanguage (String value)
 
String getPreferredLanguage ()
 
int getAttributeIndex (String attributeName)
 
String getAttribute (String attributeName)
 
String [] getAttributeArray (String attributeName)
 
GluuCustomAttribute getGluuCustomAttribute (String attributeName)
 
void setAttribute (String attributeName, String attributeValue)
 
void setAttribute (String attributeName, String[] attributeValue)
 
void removeAttribute (String attributeName)
 
String toString ()
 
void setGluuAllowPublication (String allowPublication)
 
String getGluuAllowPublication ()
 
boolean isAllowPublication ()
 
void setAllowPublication (boolean allowPublication)
 
void setGluuOptOuts (List< String > optOuts)
 
List< String > getGluuOptOuts ()
 
List< String > getAssociatedClient ()
 
void setAssociatedClient (List< String > associatedClientDNs)
 
String getSourceServerName ()
 
void setSourceServerName (String sourceServerName)
 
final String getSourceServerUserDn ()
 
final void setSourceServerUserDn (String sourceServerUserDn)
 
Date getCreationDate ()
 
void setCreationDate (Date creationDate)
 
Date getUpdatedAt ()
 
void setUpdatedAt (Date updatedAt)
 
List< String > getOxExternalUid ()
 
void setOxExternalUid (List< String > oxExternalUid)
 
List< String > getOxPPID ()
 
void setOxPPID (List< String > oxPPID)
 
boolean equals (Object obj)
 
GluuCustomPerson clone () throws CloneNotSupportedException
 
String getGuid ()
 
void setGuid (String guid)
 
List< GluuCustomAttributegetCustomAttributes ()
 
void setCustomAttributes (List< GluuCustomAttribute > customAttributes)
 
String getInum ()
 
void setInum (String value)
 
String getUid ()
 
void setUid (String value)
 
String getDisplayName ()
 
void setDisplayName (String value)
 
String [] getCustomObjectClasses ()
 
void setCustomObjectClasses (String[] customObjectClasses)
 
String [] getAttributes (String attributeName)
 
String getAttribute (String attributeName, String defaultValue)
 
void setAttribute (GluuCustomAttribute attribute)
 

限定公開変数類

List< GluuCustomAttributecustomAttributes = new ArrayList<GluuCustomAttribute>()
 

非公開変数類

transient boolean selected
 
String sourceServerName
 
String sourceServerUserDn
 
String gluuAllowPublication
 
String guid
 
List< String > gluuOptOuts
 
List< String > associatedClient
 
List< String > oxPPID
 
List< String > oxExternalUid
 
OTPDevice oxOTPDevices
 
String oxMobileDevices
 
Date creationDate
 
Date updatedAt
 

静的非公開変数類

static final long serialVersionUID = -1879582184398161112L
 

詳解

Person

著者
Yuriy Movchan Date: 10.21.2010

関数詳解

◆ clone()

GluuCustomPerson org.gluu.oxtrust.model.GluuCustomPerson.clone ( ) throws CloneNotSupportedException
inline
373  {
374  return (GluuCustomPerson) super.clone();
375  }

◆ equals()

boolean org.gluu.oxtrust.model.GluuCustomPerson.equals ( Object  obj)
inline
364  {
365  boolean result = false;
366  if(obj != null && getInum()!=null && obj instanceof GluuCustomPerson){
367  result = getInum().equals(((GluuCustomPerson) obj).getInum());
368  }
369 
370  return result;
371  }
String getInum()
Definition: User.java:42

◆ getAssociatedClient()

List<String> org.gluu.oxtrust.model.GluuCustomPerson.getAssociatedClient ( )
inline
304  {
305  return this.associatedClient;
306  }
List< String > associatedClient
Definition: GluuCustomPerson.java:50

◆ getAttribute() [1/2]

String org.gluu.oxtrust.model.CustomEntry.getAttribute ( String  attributeName,
String  defaultValue 
)
inlineinherited
71  {
72  String result = getAttribute(attributeName);
73  if (StringHelper.isEmpty(result)) {
74  result = defaultValue;
75  }
76 
77  return result;
78  }
String getAttribute(String attributeName)
Definition: CustomEntry.java:56

◆ getAttribute() [2/2]

String org.gluu.oxtrust.model.GluuCustomPerson.getAttribute ( String  attributeName)
inline
219  {
220  String value = null;
221  for (GluuCustomAttribute attribute : customAttributes) {
222  if (attribute.getName().equalsIgnoreCase(attributeName)) {
223  value = attribute.getValue();
224  break;
225  }
226  }
227  return value;
228  }
List< GluuCustomAttribute > customAttributes
Definition: User.java:32

◆ getAttributeArray()

String [] org.gluu.oxtrust.model.GluuCustomPerson.getAttributeArray ( String  attributeName)
inline
230  {
231  GluuCustomAttribute gluuCustomAttribute =
232  getGluuCustomAttribute(attributeName);
233  if (gluuCustomAttribute == null) {
234  return null;
235  } else {
236  return gluuCustomAttribute.getValues();
237  }
238  }
GluuCustomAttribute getGluuCustomAttribute(String attributeName)
Definition: GluuCustomPerson.java:240

◆ getAttributeIndex()

int org.gluu.oxtrust.model.GluuCustomPerson.getAttributeIndex ( String  attributeName)
inline
207  {
208  int idx = 0;
209  for (GluuCustomAttribute attribute : customAttributes) {
210  if (attribute.getName().equalsIgnoreCase(attributeName)) {
211  return idx;
212  }
213  idx++;
214  }
215 
216  return idx;
217  }
List< GluuCustomAttribute > customAttributes
Definition: User.java:32

◆ getAttributes()

String [] org.gluu.oxtrust.model.CustomEntry.getAttributes ( String  attributeName)
inlineinherited
41  {
42  if (StringHelper.isEmpty(attributeName)) {
43  return null;
44  }
45 
46  String[] values = null;
47  for (GluuCustomAttribute attribute : getCustomAttributes()) {
48  if (StringHelper.equalsIgnoreCase(attribute.getName(), attributeName)) {
49  values = attribute.getValues();
50  break;
51  }
52  }
53  return values;
54  }
abstract List< GluuCustomAttribute > getCustomAttributes()

◆ getCommonName()

String org.gluu.oxtrust.model.GluuCustomPerson.getCommonName ( )
inline
120  {
121  return getAttribute("cn");
122  }
String getAttribute(String attributeName)
Definition: GluuCustomPerson.java:219

◆ getCreationDate()

Date org.gluu.oxtrust.model.GluuCustomPerson.getCreationDate ( )
inline
328  {
329  return creationDate;
330  }
Date creationDate
Definition: GluuCustomPerson.java:83

◆ getCustomAttributes()

List<GluuCustomAttribute> org.gluu.oxtrust.model.User.getCustomAttributes ( )
inlineinherited
34  {
35  return customAttributes;
36  }
List< GluuCustomAttribute > customAttributes
Definition: User.java:32

◆ getCustomObjectClasses()

String [] org.gluu.oxtrust.model.CustomEntry.getCustomObjectClasses ( )
inlineinherited
33  {
34  return customObjectClasses;
35  }
String [] customObjectClasses
Definition: CustomEntry.java:27

◆ getDisplayName()

String org.gluu.oxtrust.model.User.getDisplayName ( )
inlineinherited
58  {
59  return getAttribute("displayName");
60  }
String getAttribute(String attributeName)
Definition: CustomEntry.java:56

◆ getGivenName()

String org.gluu.oxtrust.model.GluuCustomPerson.getGivenName ( )
inline
128  {
129  return getAttribute("givenName");
130  }
String getAttribute(String attributeName)
Definition: GluuCustomPerson.java:219

◆ getGluuAllowPublication()

String org.gluu.oxtrust.model.GluuCustomPerson.getGluuAllowPublication ( )
inline
284  {
285  return gluuAllowPublication;
286  }
String gluuAllowPublication
Definition: GluuCustomPerson.java:41

◆ getGluuCustomAttribute()

GluuCustomAttribute org.gluu.oxtrust.model.GluuCustomPerson.getGluuCustomAttribute ( String  attributeName)
inline
240  {
241  for (GluuCustomAttribute gluuCustomAttribute : customAttributes) {
242  if (gluuCustomAttribute.getName().equalsIgnoreCase(attributeName)) {
243  return gluuCustomAttribute;
244  }
245  }
246 
247  return null;
248  }
List< GluuCustomAttribute > customAttributes
Definition: User.java:32

◆ getGluuIMAPData()

String org.gluu.oxtrust.model.GluuCustomPerson.getGluuIMAPData ( )
inline
104  {
105  return getAttribute("gluuIMAPData");
106  }
String getAttribute(String attributeName)
Definition: GluuCustomPerson.java:219

◆ getGluuOptOuts()

List<String> org.gluu.oxtrust.model.GluuCustomPerson.getGluuOptOuts ( )
inline
300  {
301  return gluuOptOuts;
302  }
List< String > gluuOptOuts
Definition: GluuCustomPerson.java:47

◆ getGuid()

String org.gluu.oxtrust.model.GluuCustomPerson.getGuid ( )
inline
377  {
378  return guid;
379  }
String guid
Definition: GluuCustomPerson.java:44

◆ getIname()

String org.gluu.oxtrust.model.GluuCustomPerson.getIname ( )
inline
88  {
89  return getAttribute("iname");
90  }
String getAttribute(String attributeName)
Definition: GluuCustomPerson.java:219

◆ getInum()

String org.gluu.oxtrust.model.User.getInum ( )
inlineinherited
42  {
43  return getAttribute("inum");
44  }
String getAttribute(String attributeName)
Definition: CustomEntry.java:56

◆ getMail()

String org.gluu.oxtrust.model.GluuCustomPerson.getMail ( )
inline
96  {
97  return getAttribute("mail");
98  }
String getAttribute(String attributeName)
Definition: GluuCustomPerson.java:219

◆ getMemberOf()

List<String> org.gluu.oxtrust.model.GluuCustomPerson.getMemberOf ( )
inline
168  {
169  String[] value = {};
170  for (GluuCustomAttribute attribute : customAttributes) {
171  if (attribute.getName().equalsIgnoreCase("memberOf")) {
172  value = attribute.getValues();
173  break;
174  }
175  }
176  return Arrays.asList(value);
177  }
List< GluuCustomAttribute > customAttributes
Definition: User.java:32

◆ getNetworkPoken()

String org.gluu.oxtrust.model.GluuCustomPerson.getNetworkPoken ( )
inline
112  {
113  return getAttribute("networkPoken");
114  }
String getAttribute(String attributeName)
Definition: GluuCustomPerson.java:219

◆ getOxExternalUid()

List<String> org.gluu.oxtrust.model.GluuCustomPerson.getOxExternalUid ( )
inline
344  {
345  return oxExternalUid;
346  }
List< String > oxExternalUid
Definition: GluuCustomPerson.java:57

◆ getOxMobileDevices()

String org.gluu.oxtrust.model.GluuCustomPerson.getOxMobileDevices ( )
inline
66  {
67  return oxMobileDevices;
68  }
String oxMobileDevices
Definition: GluuCustomPerson.java:64

◆ getOxOTPDevices()

OTPDevice org.gluu.oxtrust.model.GluuCustomPerson.getOxOTPDevices ( )
inline
74  {
75  return oxOTPDevices;
76  }
OTPDevice oxOTPDevices
Definition: GluuCustomPerson.java:61

◆ getOxPPID()

List<String> org.gluu.oxtrust.model.GluuCustomPerson.getOxPPID ( )
inline
352  {
353  return oxPPID;
354  }
List< String > oxPPID
Definition: GluuCustomPerson.java:53

◆ getPreferredLanguage()

String org.gluu.oxtrust.model.GluuCustomPerson.getPreferredLanguage ( )
inline
203  {
204  return getAttribute("preferredLanguage");
205  }
String getAttribute(String attributeName)
Definition: GluuCustomPerson.java:219

◆ getSLAManager()

GluuBoolean org.gluu.oxtrust.model.GluuCustomPerson.getSLAManager ( )
inline
160  {
161  return GluuBoolean.getByValue(getAttribute("gluuSLAManager"));
162  }
String getAttribute(String attributeName)
Definition: GluuCustomPerson.java:219

◆ getSourceServerName()

String org.gluu.oxtrust.model.GluuCustomPerson.getSourceServerName ( )
inline
312  {
313  return sourceServerName;
314  }
String sourceServerName
Definition: GluuCustomPerson.java:37

◆ getSourceServerUserDn()

final String org.gluu.oxtrust.model.GluuCustomPerson.getSourceServerUserDn ( )
inline
320  {
321  return sourceServerUserDn;
322  }
String sourceServerUserDn
Definition: GluuCustomPerson.java:38

◆ getStatus()

GluuStatus org.gluu.oxtrust.model.GluuCustomPerson.getStatus ( )
inline
136  {
137  return GluuStatus.getByValue(getAttribute("gluuStatus"));
138  }
String getAttribute(String attributeName)
Definition: GluuCustomPerson.java:219

◆ getSurname()

String org.gluu.oxtrust.model.GluuCustomPerson.getSurname ( )
inline
183  {
184  return getAttribute("sn");
185  }
String getAttribute(String attributeName)
Definition: GluuCustomPerson.java:219

◆ getTimezone()

String org.gluu.oxtrust.model.GluuCustomPerson.getTimezone ( )
inline
195  {
196  return getAttribute("zoneinfo");
197  }
String getAttribute(String attributeName)
Definition: GluuCustomPerson.java:219

◆ getUid()

String org.gluu.oxtrust.model.User.getUid ( )
inlineinherited
50  {
51  return getAttribute("uid");
52  }
String getAttribute(String attributeName)
Definition: CustomEntry.java:56

◆ getUpdatedAt()

Date org.gluu.oxtrust.model.GluuCustomPerson.getUpdatedAt ( )
inline
336  {
337  return updatedAt;
338  }
Date updatedAt
Definition: GluuCustomPerson.java:86

◆ getUserPassword()

String org.gluu.oxtrust.model.GluuCustomPerson.getUserPassword ( )
inline
144  {
145  return getAttribute("userPassword");
146  }
String getAttribute(String attributeName)
Definition: GluuCustomPerson.java:219

◆ isAllowPublication()

boolean org.gluu.oxtrust.model.GluuCustomPerson.isAllowPublication ( )
inline
288  {
289  return Boolean.parseBoolean(gluuAllowPublication);
290  }
String gluuAllowPublication
Definition: GluuCustomPerson.java:41

◆ isSelected()

boolean org.gluu.oxtrust.model.GluuCustomPerson.isSelected ( )
inline
152  {
153  return selected;
154  }
transient boolean selected
Definition: GluuCustomPerson.java:35

◆ removeAttribute()

void org.gluu.oxtrust.model.GluuCustomPerson.removeAttribute ( String  attributeName)
inline
264  {
265  for (Iterator<GluuCustomAttribute> it = customAttributes.iterator();
266  it.hasNext();) {
267  GluuCustomAttribute attribute = (GluuCustomAttribute) it.next();
268  if (attribute.getName().equalsIgnoreCase(attributeName)) {
269  it.remove();
270  break;
271  }
272  }
273  }
List< GluuCustomAttribute > customAttributes
Definition: User.java:32

◆ setAllowPublication()

void org.gluu.oxtrust.model.GluuCustomPerson.setAllowPublication ( boolean  allowPublication)
inline
292  {
293  this.gluuAllowPublication = Boolean.toString(allowPublication);
294  }
String gluuAllowPublication
Definition: GluuCustomPerson.java:41

◆ setAssociatedClient()

void org.gluu.oxtrust.model.GluuCustomPerson.setAssociatedClient ( List< String >  associatedClientDNs)
inline
308  {
309  this.associatedClient = associatedClientDNs;
310  }
List< String > associatedClient
Definition: GluuCustomPerson.java:50

◆ setAttribute() [1/3]

void org.gluu.oxtrust.model.CustomEntry.setAttribute ( GluuCustomAttribute  attribute)
inlineinherited
88  {
89  List<GluuCustomAttribute> customAttributes = getCustomAttributes();
90  customAttributes.remove(attribute);
91  customAttributes.add(attribute);
92  }
abstract List< GluuCustomAttribute > getCustomAttributes()

◆ setAttribute() [2/3]

void org.gluu.oxtrust.model.GluuCustomPerson.setAttribute ( String  attributeName,
String  attributeValue 
)
inline
250  {
251  GluuCustomAttribute attribute = new GluuCustomAttribute(attributeName,
252  attributeValue);
253  customAttributes.remove(attribute);
254  customAttributes.add(attribute);
255  }
List< GluuCustomAttribute > customAttributes
Definition: User.java:32

◆ setAttribute() [3/3]

void org.gluu.oxtrust.model.GluuCustomPerson.setAttribute ( String  attributeName,
String []  attributeValue 
)
inline
257  {
258  GluuCustomAttribute attribute = new GluuCustomAttribute(attributeName,
259  attributeValue);
260  customAttributes.remove(attribute);
261  customAttributes.add(attribute);
262  }
List< GluuCustomAttribute > customAttributes
Definition: User.java:32

◆ setCommonName()

void org.gluu.oxtrust.model.GluuCustomPerson.setCommonName ( String  value)
inline
124  {
125  setAttribute("cn", value);
126  }
void setAttribute(String attributeName, String attributeValue)
Definition: GluuCustomPerson.java:250

◆ setCreationDate()

void org.gluu.oxtrust.model.GluuCustomPerson.setCreationDate ( Date  creationDate)
inline
332  {
333  this.creationDate = creationDate;
334  }
Date creationDate
Definition: GluuCustomPerson.java:83

◆ setCustomAttributes()

void org.gluu.oxtrust.model.User.setCustomAttributes ( List< GluuCustomAttribute customAttributes)
inlineinherited
38  {
40  }
List< GluuCustomAttribute > customAttributes
Definition: User.java:32

◆ setCustomObjectClasses()

void org.gluu.oxtrust.model.CustomEntry.setCustomObjectClasses ( String []  customObjectClasses)
inlineinherited
37  {
39  }
String [] customObjectClasses
Definition: CustomEntry.java:27

◆ setDisplayName()

void org.gluu.oxtrust.model.User.setDisplayName ( String  value)
inlineinherited
62  {
63  setAttribute("displayName", value);
64  }
void setAttribute(String attributeName, String attributeValue)
Definition: CustomEntry.java:80

◆ setGivenName()

void org.gluu.oxtrust.model.GluuCustomPerson.setGivenName ( String  value)
inline
132  {
133  setAttribute("givenName", value);
134  }
void setAttribute(String attributeName, String attributeValue)
Definition: GluuCustomPerson.java:250

◆ setGluuAllowPublication()

void org.gluu.oxtrust.model.GluuCustomPerson.setGluuAllowPublication ( String  allowPublication)
inline
280  {
281  this.gluuAllowPublication = allowPublication;
282  }
String gluuAllowPublication
Definition: GluuCustomPerson.java:41

◆ setGluuIMAPData()

void org.gluu.oxtrust.model.GluuCustomPerson.setGluuIMAPData ( String  value)
inline
108  {
109  setAttribute("gluuIMAPData", value);
110  }
void setAttribute(String attributeName, String attributeValue)
Definition: GluuCustomPerson.java:250

◆ setGluuOptOuts()

void org.gluu.oxtrust.model.GluuCustomPerson.setGluuOptOuts ( List< String >  optOuts)
inline
296  {
297  this.gluuOptOuts = optOuts;
298  }
List< String > gluuOptOuts
Definition: GluuCustomPerson.java:47

◆ setGuid()

void org.gluu.oxtrust.model.GluuCustomPerson.setGuid ( String  guid)
inline
381  {
382  this.guid = guid;
383  }
String guid
Definition: GluuCustomPerson.java:44

◆ setIname()

void org.gluu.oxtrust.model.GluuCustomPerson.setIname ( String  value)
inline
92  {
93  setAttribute("iname", value);
94  }
void setAttribute(String attributeName, String attributeValue)
Definition: GluuCustomPerson.java:250

◆ setInum()

void org.gluu.oxtrust.model.User.setInum ( String  value)
inlineinherited
46  {
47  setAttribute("inum", value);
48  }
void setAttribute(String attributeName, String attributeValue)
Definition: CustomEntry.java:80

◆ setMail()

void org.gluu.oxtrust.model.GluuCustomPerson.setMail ( String  value)
inline
100  {
101  setAttribute("mail", value);
102  }
void setAttribute(String attributeName, String attributeValue)
Definition: GluuCustomPerson.java:250

◆ setMemberOf()

void org.gluu.oxtrust.model.GluuCustomPerson.setMemberOf ( List< String >  value)
inline
179  {
180  setAttribute("memberOf", value.toArray(new String[] {}));
181  }
void setAttribute(String attributeName, String attributeValue)
Definition: GluuCustomPerson.java:250

◆ setNetworkPoken()

void org.gluu.oxtrust.model.GluuCustomPerson.setNetworkPoken ( String  value)
inline
116  {
117  setAttribute("networkPoken", value);
118  }
void setAttribute(String attributeName, String attributeValue)
Definition: GluuCustomPerson.java:250

◆ setOxExternalUid()

void org.gluu.oxtrust.model.GluuCustomPerson.setOxExternalUid ( List< String >  oxExternalUid)
inline
348  {
350  }
List< String > oxExternalUid
Definition: GluuCustomPerson.java:57

◆ setOxMobileDevices()

void org.gluu.oxtrust.model.GluuCustomPerson.setOxMobileDevices ( String  oxMobileDevices)
inline
70  {
72  }
String oxMobileDevices
Definition: GluuCustomPerson.java:64

◆ setOxOTPDevices()

void org.gluu.oxtrust.model.GluuCustomPerson.setOxOTPDevices ( OTPDevice  oxOTPDevices)
inline
78  {
80  }
OTPDevice oxOTPDevices
Definition: GluuCustomPerson.java:61

◆ setOxPPID()

void org.gluu.oxtrust.model.GluuCustomPerson.setOxPPID ( List< String >  oxPPID)
inline
356  {
357  this.oxPPID = oxPPID;
358  }
List< String > oxPPID
Definition: GluuCustomPerson.java:53

◆ setPreferredLanguage()

void org.gluu.oxtrust.model.GluuCustomPerson.setPreferredLanguage ( String  value)
inline
199  {
200  setAttribute("preferredLanguage", value);
201  }
void setAttribute(String attributeName, String attributeValue)
Definition: GluuCustomPerson.java:250

◆ setSelected()

void org.gluu.oxtrust.model.GluuCustomPerson.setSelected ( boolean  selected)
inline
156  {
157  this.selected = selected;
158  }
transient boolean selected
Definition: GluuCustomPerson.java:35

◆ setSLAManager()

void org.gluu.oxtrust.model.GluuCustomPerson.setSLAManager ( GluuBoolean  value)
inline
164  {
165  setAttribute("gluuSLAManager", value.getValue());
166  }
void setAttribute(String attributeName, String attributeValue)
Definition: GluuCustomPerson.java:250

◆ setSourceServerName()

void org.gluu.oxtrust.model.GluuCustomPerson.setSourceServerName ( String  sourceServerName)
inline
316  {
318  }
String sourceServerName
Definition: GluuCustomPerson.java:37

◆ setSourceServerUserDn()

final void org.gluu.oxtrust.model.GluuCustomPerson.setSourceServerUserDn ( String  sourceServerUserDn)
inline
324  {
326  }
String sourceServerUserDn
Definition: GluuCustomPerson.java:38

◆ setStatus()

void org.gluu.oxtrust.model.GluuCustomPerson.setStatus ( GluuStatus  value)
inline
140  {
141  setAttribute("gluuStatus", value.getValue());
142  }
void setAttribute(String attributeName, String attributeValue)
Definition: GluuCustomPerson.java:250

◆ setSurname()

void org.gluu.oxtrust.model.GluuCustomPerson.setSurname ( String  value)
inline
187  {
188  setAttribute("sn", value);
189  }
void setAttribute(String attributeName, String attributeValue)
Definition: GluuCustomPerson.java:250

◆ setTimezone()

void org.gluu.oxtrust.model.GluuCustomPerson.setTimezone ( String  value)
inline
191  {
192  setAttribute("zoneinfo", value);
193  }
void setAttribute(String attributeName, String attributeValue)
Definition: GluuCustomPerson.java:250

◆ setUid()

void org.gluu.oxtrust.model.User.setUid ( String  value)
inlineinherited
54  {
55  setAttribute("uid", value);
56  }
void setAttribute(String attributeName, String attributeValue)
Definition: CustomEntry.java:80

◆ setUpdatedAt()

void org.gluu.oxtrust.model.GluuCustomPerson.setUpdatedAt ( Date  updatedAt)
inline
340  {
341  this.updatedAt = updatedAt;
342  }
Date updatedAt
Definition: GluuCustomPerson.java:86

◆ setUserPassword()

void org.gluu.oxtrust.model.GluuCustomPerson.setUserPassword ( String  value)
inline
148  {
149  setAttribute("userPassword", value);
150  }
void setAttribute(String attributeName, String attributeValue)
Definition: GluuCustomPerson.java:250

◆ toString()

String org.gluu.oxtrust.model.GluuCustomPerson.toString ( )
inline
276  {
277  return super.toString();
278  }

メンバ詳解

◆ associatedClient

List<String> org.gluu.oxtrust.model.GluuCustomPerson.associatedClient
private

◆ creationDate

Date org.gluu.oxtrust.model.GluuCustomPerson.creationDate
private

◆ customAttributes

List<GluuCustomAttribute> org.gluu.oxtrust.model.User.customAttributes = new ArrayList<GluuCustomAttribute>()
protectedinherited

◆ gluuAllowPublication

String org.gluu.oxtrust.model.GluuCustomPerson.gluuAllowPublication
private

◆ gluuOptOuts

List<String> org.gluu.oxtrust.model.GluuCustomPerson.gluuOptOuts
private

◆ guid

String org.gluu.oxtrust.model.GluuCustomPerson.guid
private

◆ oxExternalUid

List<String> org.gluu.oxtrust.model.GluuCustomPerson.oxExternalUid
private

◆ oxMobileDevices

String org.gluu.oxtrust.model.GluuCustomPerson.oxMobileDevices
private

◆ oxOTPDevices

OTPDevice org.gluu.oxtrust.model.GluuCustomPerson.oxOTPDevices
private

◆ oxPPID

List<String> org.gluu.oxtrust.model.GluuCustomPerson.oxPPID
private

◆ selected

transient boolean org.gluu.oxtrust.model.GluuCustomPerson.selected
private

◆ serialVersionUID

final long org.gluu.oxtrust.model.GluuCustomPerson.serialVersionUID = -1879582184398161112L
staticprivate

◆ sourceServerName

String org.gluu.oxtrust.model.GluuCustomPerson.sourceServerName
private

◆ sourceServerUserDn

String org.gluu.oxtrust.model.GluuCustomPerson.sourceServerUserDn
private

◆ updatedAt

Date org.gluu.oxtrust.model.GluuCustomPerson.updatedAt
private

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