Searched refs:id (Results 301 - 325 of 1565) sorted by relevance

<<11121314151617181920>>

/forgerock/jee-agents-v3.5/jee-agents-jsr196/src/main/java/com/sun/opensso/agents/jsr115/
H A DSharedState.java150 * @param id
155 static void link(String id, String otherId) argument
161 if (otherId.equals(id)) {
167 String key = AgentConfiguration.getApplicationUser()+ id;
181 // for each context (id) linked to the context being linked to this
185 //add the id to this linkSet
198 static void initLinks(String id) { argument
199 // create a new linkSet with only this context id, and put in the table.
201 linkSet.add(id);
202 linkTable.put(id, linkSe
205 removeLinks(String id) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/soapbinding/
H A DConsentHeader.java53 private String id = null; field in class:ConsentHeader
76 id = XMLUtils.getNodeAttributeValue(
128 * Returns value of <code>id</code> attribute.
130 * @return value of <code>id</code> attribute.
133 return id;
187 id = SAMLUtils.generateID();
189 id = null;
213 if (id != null) {
215 id);
H A DUsageDirectiveHeader.java55 private String id = null; field in class:UsageDirectiveHeader
87 id = XMLUtils.getNodeAttributeValue(
126 * Returns value of <code>id</code> attribute.
128 * @return value of <code>id</code> attribute.
131 return id;
209 id = SAMLUtils.generateID();
211 id = null;
231 if (id != null) {
234 id);
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/authorization/policies/
H A DPoliciesView.js62 _queryFilter: [`applicationName+eq+"${encodeURIComponent(this.data.policySetModel.id)}"`]
83 args: _.map([self.data.realmPath, self.data.policySetModel.id, this.model.id],
125 args: _.map([self.data.realmPath, self.data.policySetModel.id, this.model.id],
132 this.model.id,
136 args: _.map([self.data.realmPath, self.data.policySetModel.id],
183 args: _.map([this.data.realmPath, this.data.policySetModel.id], encodeURIComponent),
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/user/oauth2/
H A DTokensView.js70 data.aaData[i].selector = `<input name="selector" id="${
71 data.aaData[i].id
99 "mData": "id",
127 var id = data.id[0], htmlCode, table, temp = row, td;
165 }, null, id);
185 var id, td;
187 id = td.attr("id");
195 id);
[all...]
/forgerock/openidm-v4/openidm-zip/src/main/resources/samples/sample3/tools/
H A DSearchScript.groovy72 throw new BadRequestException("Expecting pagedResultsCookie to contain timestamp and id.");
74 // The timestamp and id are for this example only.
79 where = " WHERE timestamp >= ? AND id > ? "
117 "__UID__" : "id",
121 "__UID__" : "id",
125 "__UID__" : "id",
182 uid dataCollector.id
183 id dataCollector.uid
198 u.id,
213 ON c.users_id = u.id
[all...]
/forgerock/openam-v13/openam-uma/src/main/java/org/forgerock/openam/uma/
H A DPendingRequestsService.java103 * @param resourceSetId The resource set id.
105 * @param resourceOwnerId The resource owner id.
106 * @param requestingPartyId The requesting party id.
137 * @param id The id of the request.
141 public UmaPendingRequest readPendingRequest(String id) throws ResourceException { argument
143 return store.read(id);
145 throw new org.forgerock.json.resource.NotFoundException("Pending request, " + id + ", not found", e);
147 throw new InternalServerErrorException("Failed to read pending request, " + id, e);
154 * @param resourceOwnerId The resource owner id
201 approvePendingRequest(Context context, String id, JsonValue content, String realm) argument
217 approvePendingRequest(final UmaPendingRequest request, final Collection<String> scopes, final String id, final String realm) argument
321 denyPendingRequest(String id, String realm) argument
[all...]
/forgerock/openam/openam-uma/src/main/java/org/forgerock/openam/uma/
H A DPendingRequestsService.java105 * @param resourceSetId The resource set id.
107 * @param resourceOwnerId The resource owner id.
108 * @param requestingPartyId The requesting party id.
139 * @param id The id of the request.
143 public UmaPendingRequest readPendingRequest(String id) throws ResourceException { argument
145 return store.read(id);
147 throw new org.forgerock.json.resource.NotFoundException("Pending request, " + id + ", not found", e);
149 throw new InternalServerErrorException("Failed to read pending request, " + id, e);
156 * @param resourceOwnerId The resource owner id
203 approvePendingRequest(Context context, String id, JsonValue content, String realm) argument
219 approvePendingRequest(final UmaPendingRequest request, final Collection<String> scopes, final String id, final String realm) argument
323 denyPendingRequest(String id, String realm) argument
[all...]
/forgerock/authenticator-ios-v2/unit-tests/
H A DFRANotificationViewControllerTests.m34 id identity;
35 id mechanism;
36 id notification;
68 id authContext = OCMClassMock([LAContext class]);
82 id authContext = OCMClassMock([LAContext class]);
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/workflow/
H A DProcessInstanceView.js77 this.model.id = args[0];
84 startedBy.id = this.data.processInstance.startUserId;
88 processDefinition.id = this.data.processInstance.processDefinitionId;
99 this.data.diagramUrl = "/openidm/workflow/processinstance/" + this.model.id + "?_fields=/diagram&_mimeType=image/png";
161 eventManager.sendEvent(constants.EVENT_CHANGE_VIEW, {route: router.configuration.routes.taskInstanceView, args: [this.model.id]});
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/legacy/
H A DCoreToken.java46 private String id; field in class:CoreToken
53 public CoreToken(String id, JsonValue value){ argument
55 this.id = id;
59 public CoreToken(String id, String userName, String realm, long expireTime, String tokenType, String tokenName, argument
62 setTokenID(id);
94 protected void setTokenID(String id){ argument
95 this.id = id;
96 this.put(OAuth2Constants.CoreTokenParams.ID, stringToSet(id));
[all...]
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/colorpicker/
H A Dcolorpicker-beta-debug.js266 * The id for the "red" form field
275 * The id for the "red" hex pair output
284 * The id for the "green" form field
293 * The id for the "green" hex pair output
303 * The id for the "blue" form field
312 * The id for the "blue" hex pair output
321 * The id for the "hue" form field
330 * The id for the "saturation" form field
339 * The id for the "value" form field
348 * The id fo
[all...]
H A Dcolorpicker-beta-min.js22 default:Event.stopEvent(e);return false;}};proto.getElement=function(id){return this.get(this.OPT.ELEMENTS)[this.get(this.OPT.IDS)[id]];};_createElements=function(){var el,child,img,fld,i,ids=this.get(this.OPT.IDS),txt=this.get(this.OPT.TXT),images=this.get(this.OPT.IMAGES),Elem=function(type,o){var n=document.createElement(type);if(o){lang.augmentObject(n,o,true);}
23 return n;},RGBElem=function(type,obj){var o=lang.merge({autocomplete:"off",value:"0",size:3,maxlength:3},obj);o.name=o.id;return new Elem(type,o);};var p=this.get("element");el=new Elem("div",{id:ids[this.ID.PICKER_BG],className:"yui-picker-bg",tabIndex:-1,hideFocus:true});child=new Elem("div",{id:ids[this.ID.PICKER_THUMB],className:"yui-picker-thumb"});img=new Elem("img",{src:images.PICKER_THUMB});child.appendChild(img);el.appendChild(child);p.appendChild(el);el=new Elem("div",{id:ids[this.ID.HUE_BG],className:"yui-picker-hue-bg",tabIndex:-1,hideFocus:true});child=new Elem("div",{id:ids[this.ID.HUE_THUMB],className:"yui-picker-hue-thumb"});img=new Elem("img",{src:images.HUE_THUMB});child.appendChild(img);el.appendChild(child);p.appendChild(el);el=new Elem("div",{id:ids[this.ID.CONTROLS],className:"yui-picker-controls"});p.appendChild(el);p=el;el=new Elem("div",{className:"hd"});child=new Elem("a",{id:ids[this.ID.CONTROLS_LABEL],href:"#"});el.appendChild(child);p.appendChild(el);el=new Elem("div",{className:"bd"});p.appendChild(el);p=el;el=new Elem("ul",{id
[all...]
H A Dcolorpicker-beta.js263 * The id for the "red" form field
272 * The id for the "red" hex pair output
281 * The id for the "green" form field
290 * The id for the "green" hex pair output
300 * The id for the "blue" form field
309 * The id for the "blue" hex pair output
318 * The id for the "hue" form field
327 * The id for the "saturation" form field
336 * The id for the "value" form field
345 * The id fo
[all...]
/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/colorpicker/
H A Dcolorpicker-beta-debug.js266 * The id for the "red" form field
275 * The id for the "red" hex pair output
284 * The id for the "green" form field
293 * The id for the "green" hex pair output
303 * The id for the "blue" form field
312 * The id for the "blue" hex pair output
321 * The id for the "hue" form field
330 * The id for the "saturation" form field
339 * The id for the "value" form field
348 * The id fo
[all...]
H A Dcolorpicker-beta-min.js22 default:Event.stopEvent(e);return false;}};proto.getElement=function(id){return this.get(this.OPT.ELEMENTS)[this.get(this.OPT.IDS)[id]];};_createElements=function(){var el,child,img,fld,i,ids=this.get(this.OPT.IDS),txt=this.get(this.OPT.TXT),images=this.get(this.OPT.IMAGES),Elem=function(type,o){var n=document.createElement(type);if(o){lang.augmentObject(n,o,true);}
23 return n;},RGBElem=function(type,obj){var o=lang.merge({autocomplete:"off",value:"0",size:3,maxlength:3},obj);o.name=o.id;return new Elem(type,o);};var p=this.get("element");el=new Elem("div",{id:ids[this.ID.PICKER_BG],className:"yui-picker-bg",tabIndex:-1,hideFocus:true});child=new Elem("div",{id:ids[this.ID.PICKER_THUMB],className:"yui-picker-thumb"});img=new Elem("img",{src:images.PICKER_THUMB});child.appendChild(img);el.appendChild(child);p.appendChild(el);el=new Elem("div",{id:ids[this.ID.HUE_BG],className:"yui-picker-hue-bg",tabIndex:-1,hideFocus:true});child=new Elem("div",{id:ids[this.ID.HUE_THUMB],className:"yui-picker-hue-thumb"});img=new Elem("img",{src:images.HUE_THUMB});child.appendChild(img);el.appendChild(child);p.appendChild(el);el=new Elem("div",{id:ids[this.ID.CONTROLS],className:"yui-picker-controls"});p.appendChild(el);p=el;el=new Elem("div",{className:"hd"});child=new Elem("a",{id:ids[this.ID.CONTROLS_LABEL],href:"#"});el.appendChild(child);p.appendChild(el);el=new Elem("div",{className:"bd"});p.appendChild(el);p=el;el=new Elem("ul",{id
[all...]
H A Dcolorpicker-beta.js263 * The id for the "red" form field
272 * The id for the "red" hex pair output
281 * The id for the "green" form field
290 * The id for the "green" hex pair output
300 * The id for the "blue" form field
309 * The id for the "blue" hex pair output
318 * The id for the "hue" form field
327 * The id for the "saturation" form field
336 * The id for the "value" form field
345 * The id fo
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/impl/uma/
H A DUmaPendingRequest.java46 private String id; field in class:UmaPendingRequest
78 return id;
81 public void setId(String id) { argument
82 this.id = id;
143 field(ID, id),
/forgerock/openam-v13/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-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOAuthTokenStore.java85 * Reads a token, with the specified id, from the CTS.
87 * @param id The token's id.
91 public JsonValue read(String id) throws CoreTokenException { argument
92 Token token = cts.read(tokenIdFactory.generateTokenId(id));
111 * Deletes a token with the specified id.
113 * @param id The token's id.
116 public void delete(String id) throws CoreTokenException { argument
118 cts.delete(id);
[all...]
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/
H A DNotificationActivity.java57 final ExpandableListView list = (ExpandableListView) findViewById(R.id.notification_list);
64 public boolean onGroupClick(ExpandableListView parent, View v, int groupPosition, long id) {
76 findViewById(R.id.empty).setVisibility(View.VISIBLE);
79 findViewById(R.id.empty).setVisibility(View.GONE);
134 case android.R.id.home:
146 menu.findItem(R.id.action_clear_history).setOnMenuItemClickListener(new MenuItem.OnMenuItemClickListener() {
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/identity/
H A DIdentityLayout.java74 TextView issuerView = (TextView) findViewById(R.id.issuer);
75 TextView labelView = (TextView) findViewById(R.id.label);
76 ImageView imageView = (ImageView) findViewById(R.id.image);
108 icons.add((MechanismIcon) findViewById(R.id.iconA));
109 icons.add((MechanismIcon) findViewById(R.id.iconB));
148 if (item.getItemId() == R.id.action_delete) {
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOAuthTokenStore.java88 * Reads a token, with the specified id, from the CTS.
90 * @param id The token's id.
94 public JsonValue read(String id) throws CoreTokenException { argument
95 Token token = cts.read(tokenIdFactory.generateTokenId(id));
114 * Deletes a token with the specified id.
116 * @param id The token's id.
119 public void delete(String id) throws CoreTokenException { argument
121 cts.delete(id);
[all...]
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/impl/uma/
H A DUmaAuditEntry.java41 @Title(AUDIT_HISTORY_RESOURCE + "umaauditentry.id.title")
42 @Description(AUDIT_HISTORY_RESOURCE + "umaauditentry.id.description")
44 private String id; field in class:UmaAuditEntry
90 return id;
93 public void setId(String id) { argument
94 this.id = id;
146 field(ID, id),
H A DUmaPendingRequest.java52 private String id; field in class:UmaPendingRequest
84 return id;
87 public void setId(String id) { argument
88 this.id = id;
149 field(ID, id),

Completed in 137 milliseconds

<<11121314151617181920>>