Searched refs:id (Results 376 - 400 of 1565) sorted by relevance

<<11121314151617181920>>

/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/dst/
H A DDSTQueryItem.java51 * type="{urn:liberty:id-sis-pp:2003-08}SelectType"/>
54 * type="{urn:liberty:id-sis-pp:2003-08}IDType" />
59 * &lt;attribute name="id"
75 private String id = null; field in class:DSTQueryItem
93 * contains common attributes (attribute id and modification
130 id = element.getAttribute("id");
189 * Gets id attribute.
191 * @return id attribute.
194 return id;
201 setId(String id) argument
[all...]
H A DDSTQueryResponse.java64 * &lt;attribute name="id"
77 * &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
89 private String id = null; field in class:DSTQueryResponse
137 id = element.getAttribute("id");
217 * Gets id attribute.
219 * @return id attribute.
222 return id;
226 * Sets id attribute
228 * @param id i
230 setId(java.lang.String id) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/ums/
H A DDataLayer.java225 private DataLayer(String id, String pwd, String host, int port) argument
227 m_proxyUser = id;
324 String id = guid.getDn();
325 SearchRequest request = LDAPRequests.newSearchRequest(id, SearchScope.BASE_OBJECT, "(objectclass=*)");
339 + id, e);
355 String id = guid.getDn();
357 SearchRequest request = LDAPRequests.newSearchRequest(id, SearchScope.BASE_OBJECT, "(objectclass=*)",
370 + id, e);
387 String id = guid.getDn();
388 SearchRequest request = LDAPRequests.newSearchRequest(id, SearchScop
[all...]
/forgerock/openam/openam-core/src/main/java/com/iplanet/ums/
H A DDataLayer.java225 private DataLayer(String id, String pwd, String host, int port) argument
227 m_proxyUser = id;
324 String id = guid.getDn();
325 SearchRequest request = LDAPRequests.newSearchRequest(id, SearchScope.BASE_OBJECT, "(objectclass=*)");
339 + id, e);
355 String id = guid.getDn();
357 SearchRequest request = LDAPRequests.newSearchRequest(id, SearchScope.BASE_OBJECT, "(objectclass=*)",
370 + id, e);
387 String id = guid.getDn();
388 SearchRequest request = LDAPRequests.newSearchRequest(id, SearchScop
[all...]
/forgerock/openam-v13/openam-authentication/openam-auth-oath/src/main/java/org/forgerock/openam/authentication/modules/oath/
H A DOATH.java345 //get user id
346 AMIdentity id = null;
347 id = getIdentity(userName);
348 if (id == null) {
353 byte[] secretKeyBytes = getSharedSecret(id);
370 counterSet = id.getAttribute(counterAttrName);
380 "error invalid repo id : " +
381 id,
425 setCounterAttr(id, counter + i);
445 totpAttributeValues = id
555 getSharedSecret(AMIdentity id) argument
664 setCounterAttr(AMIdentity id, int counter) argument
699 setLoginTime(AMIdentity id, long timeStep) argument
[all...]
/forgerock/openam/openam-authentication/openam-auth-oath/src/main/java/org/forgerock/openam/authentication/modules/oath/
H A DOATH.java351 //get user id
352 AMIdentity id = null;
353 id = getIdentity(userName);
354 if (id == null) {
359 byte[] secretKeyBytes = getSharedSecret(id);
376 counterSet = id.getAttribute(counterAttrName);
386 "error invalid repo id : " +
387 id,
431 setCounterAttr(id, counter + i);
451 totpAttributeValues = id
561 getSharedSecret(AMIdentity id) argument
670 setCounterAttr(AMIdentity id, int counter) argument
705 setLoginTime(AMIdentity id, long timeStep) argument
[all...]
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/sms/
H A DServersResourceProvider.java110 name = "id",
131 String id = request.getNewResourceId();
133 id = validWriteOperation(content, id);
141 if (hasServerOrSiteId(token, id)) {
142 throw new ConflictException("Server with ID already exists: " + id);
149 if (id == null) {
152 createServerInstance(token, url, id, emptySet(), svrConfigXML);
187 public Promise<ResourceResponse, ResourceException> delete(Context context, String id) { argument
190 deleteServerInstance(token, getServerUrl(token, id));
252 read(Context context, String id) argument
340 validWriteOperation(JsonValue content, String id) argument
[all...]
/forgerock/authenticator-ios-v2/unit-tests/
H A DFRAFMDatabaseConnectionHelperTest.m39 id mockConfig;
40 id mockFactory;
41 id mockDatabase;
42 id mockSchemaResults;
135 id bundle = OCMClassMock([NSBundle class]);
149 id bundle = OCMClassMock([NSBundle class]);
152 id mockString = OCMClassMock([NSString class]);
180 id bundle = OCMPartialMock([NSBundle mainBundle]);
197 id bundle = OCMPartialMock([NSBundle mainBundle]);
199 id mockStrin
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/extensions/
H A DExactMatchIdentityMapper.java159 * @param id The identification string that is to be mapped to a user.
170 public Entry getEntryForID(String id) argument
181 AttributeValue value = AttributeValues.create(attributeTypes[0], id);
190 AttributeValue value = AttributeValues.create(t, id);
232 ERR_EXACTMAP_MULTIPLE_MATCHING_ENTRIES.get(String.valueOf(id));
240 get(String.valueOf(id),
247 get(String.valueOf(id),
263 ERR_EXACTMAP_MULTIPLE_MATCHING_ENTRIES.get(String.valueOf(id));
271 ERR_EXACTMAP_MULTIPLE_MATCHING_ENTRIES.get(String.valueOf(id));
/forgerock/opendj2/src/server/org/opends/server/extensions/
H A DExactMatchIdentityMapper.java158 * @param id The identification string that is to be mapped to a user.
169 public Entry getEntryForID(String id) argument
180 AttributeValue value = AttributeValues.create(attributeTypes[0], id);
189 AttributeValue value = AttributeValues.create(t, id);
231 ERR_EXACTMAP_MULTIPLE_MATCHING_ENTRIES.get(String.valueOf(id));
239 get(String.valueOf(id),
246 get(String.valueOf(id),
262 ERR_EXACTMAP_MULTIPLE_MATCHING_ENTRIES.get(String.valueOf(id));
270 ERR_EXACTMAP_MULTIPLE_MATCHING_ENTRIES.get(String.valueOf(id));
/forgerock/opendj2.6.2/src/server/org/opends/server/extensions/
H A DExactMatchIdentityMapper.java159 * @param id The identification string that is to be mapped to a user.
170 public Entry getEntryForID(String id) argument
181 AttributeValue value = AttributeValues.create(attributeTypes[0], id);
190 AttributeValue value = AttributeValues.create(t, id);
232 ERR_EXACTMAP_MULTIPLE_MATCHING_ENTRIES.get(String.valueOf(id));
240 get(String.valueOf(id),
247 get(String.valueOf(id),
263 ERR_EXACTMAP_MULTIPLE_MATCHING_ENTRIES.get(String.valueOf(id));
271 ERR_EXACTMAP_MULTIPLE_MATCHING_ENTRIES.get(String.valueOf(id));
/forgerock/opendj2-jel-hg/src/server/org/opends/server/extensions/
H A DExactMatchIdentityMapper.java159 * @param id The identification string that is to be mapped to a user.
170 public Entry getEntryForID(String id) argument
181 AttributeValue value = AttributeValues.create(attributeTypes[0], id);
190 AttributeValue value = AttributeValues.create(t, id);
232 ERR_EXACTMAP_MULTIPLE_MATCHING_ENTRIES.get(String.valueOf(id));
240 get(String.valueOf(id),
247 get(String.valueOf(id),
263 ERR_EXACTMAP_MULTIPLE_MATCHING_ENTRIES.get(String.valueOf(id));
271 ERR_EXACTMAP_MULTIPLE_MATCHING_ENTRIES.get(String.valueOf(id));
/forgerock/opendj2-hg/src/server/org/opends/server/extensions/
H A DExactMatchIdentityMapper.java158 * @param id The identification string that is to be mapped to a user.
169 public Entry getEntryForID(String id) argument
180 AttributeValue value = AttributeValues.create(attributeTypes[0], id);
189 AttributeValue value = AttributeValues.create(t, id);
231 ERR_EXACTMAP_MULTIPLE_MATCHING_ENTRIES.get(String.valueOf(id));
239 get(String.valueOf(id),
246 get(String.valueOf(id),
262 ERR_EXACTMAP_MULTIPLE_MATCHING_ENTRIES.get(String.valueOf(id));
270 ERR_EXACTMAP_MULTIPLE_MATCHING_ENTRIES.get(String.valueOf(id));
/forgerock/openam-v13/openam-schema/openam-diagnostics-schema/src/main/java/com/sun/identity/diagnostic/base/core/jaxbgen/impl/runtime/
H A DUnmarshallingContext.java156 String addToIdTable( String id );
172 * If there is no object associated with the given id,
175 Object getObjectFromId( String id );
/forgerock/openam-v13/openam-schema/openam-liberty-schema/src/main/java/com/sun/identity/federation/jaxb/entityconfig/impl/runtime/
H A DUnmarshallingContext.java156 String addToIdTable( String id );
172 * If there is no object associated with the given id,
175 Object getObjectFromId( String id );
/forgerock/openam-v13/openam-schema/openam-saml2-schema/src/main/java/com/sun/identity/saml2/jaxb/assertion/impl/runtime/
H A DUnmarshallingContext.java156 String addToIdTable( String id );
172 * If there is no object associated with the given id,
175 Object getObjectFromId( String id );
/forgerock/openam-v13/openam-schema/openam-wsfederation-schema/src/main/java/com/sun/identity/wsfederation/jaxb/entityconfig/impl/runtime/
H A DUnmarshallingContext.java156 String addToIdTable( String id );
172 * If there is no object associated with the given id,
175 Object getObjectFromId( String id );
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/extensions/
H A DExactMatchIdentityMapper.java160 * @param id The identification string that is to be mapped to a user.
172 public Entry getEntryForID(String id) argument
183 ByteString value = ByteString.valueOfUtf8(id);
191 ByteString value = ByteString.valueOfUtf8(id);
232 LocalizableMessage message = ERR_EXACTMAP_MULTIPLE_MATCHING_ENTRIES.get(id);
239 get(id, internalSearch.getErrorMessage());
245 get(id, internalSearch.getErrorMessage());
258 LocalizableMessage message = ERR_EXACTMAP_MULTIPLE_MATCHING_ENTRIES.get(id);
264 LocalizableMessage message = ERR_EXACTMAP_MULTIPLE_MATCHING_ENTRIES.get(id);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DResponseInfo.java137 * @param id the NameId in the assertion
139 public void setNameId(NameID id) { argument
140 nameId = id;
/forgerock/openam-v13/openam-tools/openam-diagnostics/openam-diagnostics-base/src/main/java/com/sun/identity/diagnostic/base/core/service/
H A DToolServiceClassLoader.java68 * service id, service manager and parent.
70 * @param id ID of the service for which the loader is created.
76 String id,
81 this.serviceId = id;
75 ToolServiceClassLoader( String id, ToolServiceManager manager, ClassLoader parent ) argument
/forgerock/authenticator-android-v2/app/src/androidTest/java/com/forgerock/authenticator/
H A DFlowTests.java89 onData(anything()).inAdapterView(withId(R.id.grid)).atPosition(1).perform(click());
90 onView(withId(R.id.refresh)).perform(click());
97 onData(anything()).inAdapterView(withId(R.id.grid)).atPosition(1).perform(click());
99 onData(anything()).inAdapterView(withId(R.id.notification_list)).atPosition(1).perform(click());
111 onData(anything()).inAdapterView(withId(R.id.grid)).atPosition(1).perform(click());
114 onData(anything()).inAdapterView(withId(R.id.grid)).atPosition(1).perform(longClick());
117 onView(withId(R.id.action_delete)).perform(click());
120 onView(withId(R.id.delete)).perform(click());
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/ui/
H A DMechanismIcon.java80 ImageView icon = (ImageView) findViewById(R.id.icon_image);
93 TextView badge = ((TextView) findViewById(R.id.badge));
/forgerock/authenticator-ios-v2/ForgeRock-Authenticator/
H A DFRABlockAlertView.m32 - (instancetype)initWithTitle:(NSString *)title message:(NSString *)message delegate:(id)delegate cancelButtonTitle:(NSString *)cancelButtonTitle otherButtonTitle:(NSString *)otherButtonTitle handler:(void (^)(NSInteger))handler {
H A DFRAUriMechanismReader.h56 - (void)addMechanismFactory:(id<FRAMechanismFactory>)factory;
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/base/model/
H A DAMModel.java205 * @param id Log Message ID.
208 void logEvent(String id, String[] data); argument
232 * @param id identity of the user being displayed.
235 public String getUserDisplayName(AMIdentity id); argument

Completed in 163 milliseconds

<<11121314151617181920>>