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

公開メンバ関数

boolean equals (Object o)
 
int hashCode ()
 
String getDisplayName ()
 
String [] getConfigurationProperties ()
 
List< String > getModuleProperties ()
 
String getScript ()
 
String getRevision ()
 
void setDisplayName (String displayName)
 
void setRevision (String revision)
 

非公開変数類

ReadOnlyEntry ldapEntry
 
String [] inum
 
String [] description
 
String displayName
 
String [] gluuStatus
 
String [] oxConfigurationProperty
 
String [] oxLevel
 
String [] oxModuleProperty
 
String [] oxRevision
 
String [] oxScript
 
String [] oxScriptType
 

詳解

This class provides an implementation of an object that can be used to represent oxCustomScript 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.

関数詳解

◆ equals()

boolean org.gluu.credmanager.core.ldap.oxCustomScript.equals ( Object  o)
inline
73  {
74  if (this == o) return true;
75  if (o == null || getClass() != o.getClass()) return false;
76  oxCustomScript that = (oxCustomScript) o;
77  return Objects.equals(ldapEntry, that.ldapEntry) &&
78  Arrays.equals(inum, that.inum) &&
79  Arrays.equals(description, that.description) &&
80  Objects.equals(displayName, that.displayName) &&
81  Arrays.equals(gluuStatus, that.gluuStatus) &&
82  Arrays.equals(oxConfigurationProperty, that.oxConfigurationProperty) &&
83  Arrays.equals(oxLevel, that.oxLevel) &&
84  Arrays.equals(oxModuleProperty, that.oxModuleProperty) &&
85  Arrays.equals(oxRevision, that.oxRevision) &&
86  Arrays.equals(oxScript, that.oxScript) &&
87  Arrays.equals(oxScriptType, that.oxScriptType);
88  }
String [] oxConfigurationProperty
Definition: oxCustomScript.java:50
String [] oxScriptType
Definition: oxCustomScript.java:70
ReadOnlyEntry ldapEntry
Definition: oxCustomScript.java:28
String [] oxLevel
Definition: oxCustomScript.java:54
String [] oxModuleProperty
Definition: oxCustomScript.java:58
String [] description
Definition: oxCustomScript.java:38
String [] oxScript
Definition: oxCustomScript.java:66
String [] inum
Definition: oxCustomScript.java:34
String [] oxRevision
Definition: oxCustomScript.java:62
String [] gluuStatus
Definition: oxCustomScript.java:46
String displayName
Definition: oxCustomScript.java:42

◆ getConfigurationProperties()

String [] org.gluu.credmanager.core.ldap.oxCustomScript.getConfigurationProperties ( )
inline

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

戻り値
The values for the field associated with the oxConfigurationProperty attribute, or
null
if that attribute was not present in the entry.
109  {
111  }
String [] oxConfigurationProperty
Definition: oxCustomScript.java:50

◆ getDisplayName()

String org.gluu.credmanager.core.ldap.oxCustomScript.getDisplayName ( )
inline
97  {
98  return displayName;
99  }
String displayName
Definition: oxCustomScript.java:42

◆ getModuleProperties()

List<String> org.gluu.credmanager.core.ldap.oxCustomScript.getModuleProperties ( )
inline
113  {
114  return Utils.listfromArray(oxModuleProperty);
115  }
String [] oxModuleProperty
Definition: oxCustomScript.java:58

◆ getRevision()

String org.gluu.credmanager.core.ldap.oxCustomScript.getRevision ( )
inline

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

戻り値
The first value for the field associated with the oxRevision attribute, or
null
if that attribute was not present in the entry or does not have any values.
149  {
150  if ((oxRevision == null) ||
151  (oxRevision.length == 0))
152  {
153  return null;
154  }
155  else
156  {
157  return oxRevision[0];
158  }
159  }
String [] oxRevision
Definition: oxCustomScript.java:62

◆ getScript()

String org.gluu.credmanager.core.ldap.oxCustomScript.getScript ( )
inline

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

戻り値
The first value for the field associated with the oxScript attribute, or
null
if that attribute was not present in the entry or does not have any values.
127  {
128  if ((oxScript == null) ||
129  (oxScript.length == 0))
130  {
131  return null;
132  }
133  else
134  {
135  return oxScript[0];
136  }
137  }
String [] oxScript
Definition: oxCustomScript.java:66

◆ hashCode()

int org.gluu.credmanager.core.ldap.oxCustomScript.hashCode ( )
inline
91  {
94  }
String [] oxConfigurationProperty
Definition: oxCustomScript.java:50
String [] oxScriptType
Definition: oxCustomScript.java:70
ReadOnlyEntry ldapEntry
Definition: oxCustomScript.java:28
String [] oxLevel
Definition: oxCustomScript.java:54
String [] oxModuleProperty
Definition: oxCustomScript.java:58
String [] description
Definition: oxCustomScript.java:38
String [] oxScript
Definition: oxCustomScript.java:66
String [] inum
Definition: oxCustomScript.java:34
String [] oxRevision
Definition: oxCustomScript.java:62
String [] gluuStatus
Definition: oxCustomScript.java:46
String displayName
Definition: oxCustomScript.java:42

◆ setDisplayName()

void org.gluu.credmanager.core.ldap.oxCustomScript.setDisplayName ( String  displayName)
inline

Sets the value for the field associated with the displayName attribute.

引数
displayNameThe value for the field associated with the displayName attribute.
168  {
169  this.displayName = displayName;
170  }
String displayName
Definition: oxCustomScript.java:42

◆ setRevision()

void org.gluu.credmanager.core.ldap.oxCustomScript.setRevision ( String  revision)
inline

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

引数
revisionThe value for the field associated with the oxRevision attribute.
180  {
181  this.oxRevision = new String[] { revision };
182  }
String [] oxRevision
Definition: oxCustomScript.java:62

メンバ詳解

◆ description

String [] org.gluu.credmanager.core.ldap.oxCustomScript.description
private

◆ displayName

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

◆ gluuStatus

String [] org.gluu.credmanager.core.ldap.oxCustomScript.gluuStatus
private

◆ inum

String [] org.gluu.credmanager.core.ldap.oxCustomScript.inum
private

◆ ldapEntry

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

◆ oxConfigurationProperty

String [] org.gluu.credmanager.core.ldap.oxCustomScript.oxConfigurationProperty
private

◆ oxLevel

String [] org.gluu.credmanager.core.ldap.oxCustomScript.oxLevel
private

◆ oxModuleProperty

String [] org.gluu.credmanager.core.ldap.oxCustomScript.oxModuleProperty
private

◆ oxRevision

String [] org.gluu.credmanager.core.ldap.oxCustomScript.oxRevision
private

◆ oxScript

String [] org.gluu.credmanager.core.ldap.oxCustomScript.oxScript
private

◆ oxScriptType

String [] org.gluu.credmanager.core.ldap.oxCustomScript.oxScriptType
private

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