Searched defs:obj (Results 101 - 125 of 477) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/
H A DLogicalSubject.java200 * @param obj object to check for equality
204 public boolean equals(Object obj) { argument
206 if (obj == null) {
209 if (!getClass().equals(obj.getClass())) {
212 LogicalSubject object = (LogicalSubject) obj;
H A DNotCondition.java271 * @param obj object to check for equality
275 public boolean equals(Object obj) { argument
276 if (!super.equals(obj)) {
279 if (!getClass().equals(obj.getClass())) {
282 NotCondition object = (NotCondition) obj;
H A DStaticAttributes.java183 * @param obj object to check for equality
187 public boolean equals(Object obj) { argument
189 if (obj == null) {
192 if (!getClass().equals(obj.getClass())) {
196 StaticAttributes object = (StaticAttributes) obj;
H A DUserAttributes.java198 * @param obj object to check for equality.
202 public boolean equals(Object obj) { argument
203 if (obj == null) {
206 if (!getClass().equals(obj.getClass())) {
210 UserAttributes object = (UserAttributes) obj;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/opensso/
H A DPolicyCondition.java210 public boolean equals(Object obj) { argument
211 if (!super.equals(obj)) {
214 if (!getClass().equals(obj.getClass())) {
217 PolicyCondition other = (PolicyCondition)obj;
/forgerock/openam-v13/openam-ldap-utils/src/main/java/org/forgerock/openam/ldap/
H A DLDAPURL.java150 public boolean equals(Object obj) { argument
151 if (obj == null) {
154 if (getClass() != obj.getClass()) {
157 final LDAPURL other = (LDAPURL) obj;
/forgerock/openam-v13/openam-tools/openam-build-tools/src/main/java/org/forgerock/openam/upgrade/apt/
H A DUpgradeStepProcessor.java158 public boolean equals(Object obj) { argument
159 if (obj == null) {
162 if (getClass() != obj.getClass()) {
165 final DependencyInfo other = (DependencyInfo) obj;
/forgerock/openam-v13/openam-entitlements/src/main/java/com/sun/identity/entitlement/
H A DEntitlementSubjectImpl.java172 * @param obj object to check for equality
176 public boolean equals(Object obj) { argument
177 if (obj == null) {
180 if (!getClass().equals(obj.getClass())) {
183 EntitlementSubjectImpl object = (EntitlementSubjectImpl) obj;
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/conditions/environment/
H A DAuthenticateToRealmCondition.java186 public boolean equals(Object obj) { argument
187 if (!super.equals(obj)) {
190 if (!getClass().equals(obj.getClass())) {
194 AuthenticateToRealmCondition other = (AuthenticateToRealmCondition)obj;
H A DLDAPFilterCondition.java155 public boolean equals(Object obj) { argument
156 if (!super.equals(obj)) {
159 if (!getClass().equals(obj.getClass())) {
163 LDAPFilterCondition other = (LDAPFilterCondition)obj;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/idpp/container/
H A DIDPPCommonName.java255 * @param obj CommonNameType JAXB object.
259 private Map getCommonNameMap(Object obj, Map map) argument
265 if(obj != null) {
266 if(obj instanceof CommonNameType) {
267 CommonNameType cnType = (CommonNameType)obj;
H A DIDPPDemographics.java261 * @param obj DemographicsType JAXB object.
266 private Map getDemographicsMap(Object obj, Map map) argument
277 if(obj != null) {
278 if(obj instanceof DemographicsType) {
279 DemographicsType demoGraphs = (DemographicsType)obj;
H A DIDPPEmploymentIdentity.java199 * @param obj EmploymentIdentityType JAXB object.
203 private Map getEmploymentIdentityMap(Object obj, Map map) argument
211 if(obj != null) {
212 if(obj instanceof EmploymentIdentityType) {
213 EmploymentIdentityType eiType = (EmploymentIdentityType)obj;
H A DIDPPLegalIdentity.java449 * @param obj LegalIdentityType JAXB object.
453 private Map getLegalIdentityMap(Object obj, Map map) argument
463 if(obj != null) {
464 if(obj instanceof LegalIdentityType) {
465 LegalIdentityType lType = (LegalIdentityType)obj;
520 * @param obj VATType JAXB Object
524 private Map getVATMap(Object obj, Map map) throws IDPPException { argument
528 if(obj != null) {
529 if(obj instanceof VATType) {
530 VATType vType = (VATType)obj;
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/tools/
H A DBackendTypeHelper.java98 public boolean equals(Object obj) argument
100 return obj instanceof BackendTypeUIAdapter && ((BackendTypeUIAdapter) obj).toString().equals(toString());
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/util/
H A DBuildVersion.java219 public boolean equals(final Object obj) argument
221 if (this == obj)
225 else if (obj instanceof BuildVersion)
227 final BuildVersion other = (BuildVersion) obj;
/forgerock/opendj-v3/opendj-config/src/main/java/org/forgerock/opendj/config/dsconfig/
H A DBuildVersion.java190 public boolean equals(final Object obj) { argument
191 if (this == obj) {
193 } else if (obj instanceof BuildVersion) {
194 final BuildVersion other = (BuildVersion) obj;
/forgerock/openidm-v4/openidm-repo-jdbc/src/main/java/org/forgerock/openidm/repo/jdbc/
H A DTableHandler.java75 * @param obj the contents of the object to create in the object set.
85 Map<String, Object> obj, Connection connection)
101 * @param obj the contents of the object to put in the object set.
113 String rev, Map<String, Object> obj, Connection connection)
84 create(String fullId, String type, String localId, Map<String, Object> obj, Connection connection) argument
112 update(String fullId, String type, String localId, String rev, Map<String, Object> obj, Connection connection) argument
/forgerock/openidm-v4/openidm-repo-jdbc/src/main/java/org/forgerock/openidm/repo/jdbc/impl/
H A DMSSQLTableHandler.java78 "SELECT obj.* FROM "
80 + " obj INNER JOIN "
82 + " objtype ON obj.objecttypes_id = objtype.id"
83 + " AND objtype.objecttype = ? WHERE obj.objectid = ?");
85 "UPDATE obj SET obj.objectid = ?, obj.rev = ?, obj.fullobject = ? FROM "
86 + mainTable + " obj WHERE obj
96 update(String fullId, String type, String localId, String rev, Map<String, Object> obj, Connection connection) argument
[all...]
H A DOracleTableHandler.java62 public void create(String fullId, String type, String localId, Map<String, Object> obj, Connection connection) argument
78 obj.put("_id", localId); // Save the id in the object
79 obj.put("_rev", rev); // Save the rev in the object, and return the changed rev from the create.
80 String objString = mapper.writeValueAsString(obj);
101 JsonValue jv = new JsonValue(obj);
117 result.put(QueryDefinition.DELETEQUERYSTR, "DELETE FROM " + mainTable + " obj WHERE EXISTS (SELECT 1 FROM " + typeTable + " objtype WHERE obj.objecttypes_id = objtype.id AND objtype.objecttype = ?) AND obj.objectid = ? AND obj.rev = ?");
118 result.put(QueryDefinition.PROPDELETEQUERYSTR, "DELETE FROM " + propertyTable + " WHERE " + mainTableName + "_id = (SELECT obj
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/
H A DLogicalCondition.java222 * @param obj object to check for equality
226 public boolean equals(Object obj) { argument
227 if (!super.equals(obj)) {
230 LogicalCondition object = (LogicalCondition) obj;
H A DLogicalSubject.java200 * @param obj object to check for equality
204 public boolean equals(Object obj) { argument
206 if (obj == null) {
209 if (!getClass().equals(obj.getClass())) {
212 LogicalSubject object = (LogicalSubject) obj;
H A DNotCondition.java271 * @param obj object to check for equality
275 public boolean equals(Object obj) { argument
276 if (!super.equals(obj)) {
279 if (!getClass().equals(obj.getClass())) {
282 NotCondition object = (NotCondition) obj;
H A DStaticAttributes.java183 * @param obj object to check for equality
187 public boolean equals(Object obj) { argument
189 if (obj == null) {
192 if (!getClass().equals(obj.getClass())) {
196 StaticAttributes object = (StaticAttributes) obj;
H A DUserAttributes.java198 * @param obj object to check for equality.
202 public boolean equals(Object obj) { argument
203 if (obj == null) {
206 if (!getClass().equals(obj.getClass())) {
210 UserAttributes object = (UserAttributes) obj;

Completed in 166 milliseconds

1234567891011>>