Searched refs:id (Results 326 - 350 of 1565) sorted by relevance

<<11121314151617181920>>

/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DIDPSession.java100 * Sets the pending log out request id of the session.
102 * @param id the request id
104 public void setPendingLogoutRequestID(String id) { argument
105 pendingLogoutRequestID = id;
109 * Returns the pending log out request id of the session.
111 * @return id the pending log out request id
136 * Sets the original log out request id of the session.
138 * @param id th
140 setOriginatingLogoutRequestID(String id) argument
158 setOriginatingLogoutSPEntityID(String id) argument
[all...]
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/authentication/
H A DSettingsView.js67 var id = $(event.target).attr("href").slice(1),
68 schema = SMSServiceUtils.sanitizeSchema(this.data.formData.schema.properties[id]),
71 this.data.form = new Form(element, schema, this.data.formData.values[id]);
/forgerock/openam-v13/openam-schema/openam-xacml3-schema/src/main/java/com/sun/identity/entitlement/xacml3/core/
H A DAttributes.java64 * &lt;attribute ref="{http://www.w3.org/XML/1998/namespace}id"/>
90 protected String id; field in class:Attributes
170 * Gets the value of the id property.
178 return id;
182 * Sets the value of the id property.
190 this.id = value;
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/
H A DAboutActivity.java65 tv = (TextView) findViewById(R.id.about_version);
68 TextView credits = (TextView) findViewById(R.id.credits);
72 TextView about = (TextView) findViewById(R.id.about);
H A DSettingsActivity.java45 final Switch cameraButton = (Switch) findViewById(R.id.camera_button);
55 final Button about_button = (Button) findViewById(R.id.about_button);
63 final Button clearNotificationHistory = (Button) findViewById(R.id.clear_notifications_button);
96 case android.R.id.home:
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/mechanisms/push/
H A DPush.java39 private Push(Identity owner, long id, String mechanismUID, String secret, String endpoint) { argument
40 super(owner, id, mechanismUID);
141 return new Push(owner, id, mechanismUID, secret, endpoint);
/forgerock/authenticator-android-v2/app/src/test/java/com/forgerock/authenticator/identity/
H A DIdentityLayoutTest.java98 assertEquals(((TextView) layout.findViewById(R.id.issuer)).getText(), ISSUER);
99 assertEquals(((TextView) layout.findViewById(R.id.label)).getText(), ACCOUNT_NAME);
100 assertEquals((layout.findViewById(R.id.iconA)).getVisibility(), View.GONE);
101 assertEquals((layout.findViewById(R.id.iconB)).getVisibility(), View.GONE);
111 MechanismIcon iconA = (MechanismIcon) layout.findViewById(R.id.iconA);
112 ShadowImageView iconAimage = shadowOf((ImageView) iconA.findViewById(R.id.icon_image));
116 MechanismIcon iconB = (MechanismIcon) layout.findViewById(R.id.iconB);
127 MechanismIcon iconA = (MechanismIcon) layout.findViewById(R.id.iconA);
128 ShadowImageView iconAImage = shadowOf((ImageView) iconA.findViewById(R.id.icon_image));
132 MechanismIcon iconB = (MechanismIcon) layout.findViewById(R.id
[all...]
/forgerock/openam-v13/openam-core/src/test/java/org/forgerock/openam/cts/impl/query/
H A DPartialTokenTest.java48 String id = "badger";
53 PartialToken clone = new PartialToken(first, field, id);
56 assertThat(clone.<String>getValue(field)).isEqualTo(id);
/forgerock/openam/openam-schema/openam-xacml3-schema/src/main/java/com/sun/identity/entitlement/xacml3/core/
H A DAttributes.java64 * &lt;attribute ref="{http://www.w3.org/XML/1998/namespace}id"/>
90 protected String id; field in class:Attributes
170 * Gets the value of the id property.
178 return id;
182 * Sets the value of the id property.
190 this.id = value;
/forgerock/openam/openam-core/src/test/java/org/forgerock/openam/cts/impl/query/
H A DPartialTokenTest.java48 String id = "badger";
53 PartialToken clone = new PartialToken(first, field, id);
56 assertThat(clone.<String>getValue(field)).isEqualTo(id);
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/comm/share/
H A DNotificationSet.java195 void setServiceID(String id) { argument
196 serviceID = id;
199 void setNotificationSetID(String id) { argument
200 notificationSetID = id;
H A DRequestSet.java220 void setServiceID(String id) { argument
221 serviceID = id;
224 void setRequestSetID(String id) { argument
225 requestSetID = id;
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/store/
H A DTokenDataStore.java79 * Create an object. The id field will be populated with the resulting identifier.
103 * @param id The OpenAM Unique ID assigned to the object.
108 public T read(String id) throws NotFoundException, ServerException { argument
110 if (id == null) {
114 taskExecutor.execute(id, taskFactory.read(id, handler));
117 throw new NotFoundException("Object not found with id: " + id);
126 debug.warning("Unable to read token corresponding to id: " + id,
165 delete(String id) argument
[all...]
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/rest/
H A DClientResourceManager.java52 public void createIdentity(String realm, String id, Map<String, Set<String>> attrs) argument
55 repo.createIdentity(IdType.AGENTONLY, id, attrs);
98 public void deleteIdentity(String id, String realm) throws SSOException, IdRepoException, InternalServerErrorException{ argument
101 ids.add(getIdentity(id, realm));
/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/
H A DTokenInvalidator.java87 * @param id The token's identifier.
89 private void deleteToken(String type, String id) throws ServerException, InvalidRequestException { argument
91 tokenStore.deleteAccessToken(id);
93 tokenStore.deleteRefreshToken(id);
95 tokenStore.deleteAuthorizationCode(id);
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/imageloader/
H A Dimageloader-experimental-debug.js27 * @param {String|HTMLElement} trigEl The HTML element id or reference to assign the trigger event to. Can be null for no trigger
105 * @param {String|HTMLElement} trigEl The HTML element id or reference to assign the trigger event to
154 * @param {String} domId HTML DOM id of the image element
165 * @param {String} domId HTML DOM id of the image element
178 * @param {String} domId HTML DOM id of the image element
204 for (var id in this._imgObjs) {
205 if (YAHOO.lang.hasOwnProperty(this._imgObjs, id)) {
206 this._imgObjs[id].fetch();
224 for (var id in this._imgObjs) {
225 if (YAHOO.lang.hasOwnProperty(this._imgObjs, id)) {
[all...]
H A Dimageloader-experimental-min.js12 this._fetchByClass();for(var id in this._imgObjs){if(YAHOO.lang.hasOwnProperty(this._imgObjs,id)){this._imgObjs[id].fetch();}}};YAHOO.util.ImageLoader.group.prototype._foldCheck=function(){YAHOO.log('Checking for images above the fold in group: "'+this.name+'"','info','imageloader');var scrollTop=(document.compatMode!='CSS1Compat')?document.body.scrollTop:document.documentElement.scrollTop;var viewHeight=YAHOO.util.Dom.getViewportHeight();var hLimit=scrollTop+viewHeight;var scrollLeft=(document.compatMode!='CSS1Compat')?document.body.scrollLeft:document.documentElement.scrollLeft;var viewWidth=YAHOO.util.Dom.getViewportWidth();var wLimit=scrollLeft+viewWidth;for(var id in this._imgObjs){if(YAHOO.lang.hasOwnProperty(this._imgObjs,id)){var elPos=YAHOO.util.Dom.getXY(this._imgObjs[id].domId);if(elPos[1]<hLimit&&elPos[0]<wLimit){YAHOO.log('Image with id "'+this._imgObjs[id].domId+'" is above the fold. Fetching image.','info','imageloader');this._imgObjs[id].fetch();}}}
13 if(this.className){this._classImageEls=YAHOO.util.Dom.getElementsByClassName(this.className);for(var i=0;i<this._classImageEls.length;i++){var elPos=YAHOO.util.Dom.getXY(this._classImageEls[i]);if(elPos[1]<hLimit&&elPos[0]<wLimit){YAHOO.log('Image with id "'
[all...]
H A Dimageloader-experimental.js27 * @param {String|HTMLElement} trigEl The HTML element id or reference to assign the trigger event to. Can be null for no trigger
105 * @param {String|HTMLElement} trigEl The HTML element id or reference to assign the trigger event to
154 * @param {String} domId HTML DOM id of the image element
165 * @param {String} domId HTML DOM id of the image element
178 * @param {String} domId HTML DOM id of the image element
204 for (var id in this._imgObjs) {
205 if (YAHOO.lang.hasOwnProperty(this._imgObjs, id)) {
206 this._imgObjs[id].fetch();
224 for (var id in this._imgObjs) {
225 if (YAHOO.lang.hasOwnProperty(this._imgObjs, id)) {
[all...]
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/storage/
H A DStorageSystem.java40 * @param id The identity to add.
42 long addIdentity(Identity id); argument
58 * @param mechanismId The id of the mechanism to update.
65 * @param notificationId The id of the notification to update.
71 * Delete the mechanism uniquely identified by an id.
72 * @param mechanismId The id of the mechanism to delete.
83 * Delete the notification uniquely identified by an id.
84 * @param notificationId The id of the notification to delete.
/forgerock/openam-v13/openam-authentication/openam-auth-fr-oath/src/main/java/org/forgerock/openam/authentication/modules/fr/oath/
H A DAuthenticatorOATH.java139 private AMIdentity id; field in class:AuthenticatorOATH
193 id = getIdentity();
194 realmOathService = new AuthenticatorOathService(id.getRealm());
260 final OathDeviceSettings settings = getOathDeviceSettings(id.getName(), id.getRealm());
263 detectNecessity(id); //figures out whether we're optional or not, based on server + user setting
288 realmOathService.setUserSkipOath(id, AuthenticatorOathService.SKIPPABLE);
297 paintRegisterDeviceCallback(id, newDevice);
305 realmOathService.setUserSkipOath(id, AuthenticatorOathService.SKIPPABLE);
306 realmOathService.removeAllUserDevices(id); //use
439 isRecoveryCode(String otp, OathDeviceSettings settings, AMIdentity id) argument
488 paintRegisterDeviceCallback(AMIdentity id, OathDeviceSettings settings) argument
511 createQRCodeCallback(OathDeviceSettings settings, AMIdentity id, int callbackIndex) argument
527 getAuthenticatorAppRegistrationUri(OathDeviceSettings settings, AMIdentity id) argument
584 checkOTP(String otp, AMIdentity id, OathDeviceSettings settings) argument
803 setCounterAttr(AMIdentity id, int counter, OathDeviceSettings settings) argument
817 setLoginTime(AMIdentity id, long time, OathDeviceSettings settings) argument
[all...]
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/
H A DPolicyParser.java35 * @param id a unique id to assign to the policy.
40 Privilege parsePolicy(String id, JsonValue representation) throws EntitlementException; argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/authnsvc/protocol/
H A DTransform.java86 protected String id = null; field in class:Transform
159 String id = XMLUtils.getNodeAttributeValue(element,
161 tf.setId(id);
211 * Returns value of 'id' attribute.
212 * @return value of 'id' attribute
217 return id;
231 * Sets value of 'id' attribute.
232 * @param id value of 'id' attribute
235 public void setId(String id) argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/disco/
H A DModifyResponse.java57 * &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
72 private String id = null; field in class:ModifyResponse
108 id = root.getAttribute("id");
198 * Gets id attribute.
200 * @return id attribute.
204 return id;
208 * Sets id attribute.
210 * @param id id attribut
213 setId(String id) argument
[all...]
H A DQueryResponse.java68 * &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
78 private String id = null; field in class:QueryResponse
106 id = root.getAttribute("id");
253 * Gets id attribute.
255 * @return id attribute.
259 return id;
263 * Sets id attribute.
265 * @param id id attribut
268 setId(String id) argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/dst/
H A DDSTModification.java73 * &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
82 private String id; field in class:DSTModification
133 id = element.getAttribute("id");
184 * Gets id attribute
189 return id;
193 * Sets id attribute
194 * @param id id attribute value to be set.
196 public void setId(java.lang.String id) { argument
[all...]

Completed in 179 milliseconds

<<11121314151617181920>>