Searched refs:id (Results 51 - 75 of 1565) sorted by relevance

1234567891011>>

/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/event/
H A DBrowserEvent.java62 * @param id the type of the event.
64 public BrowserEvent(Object source, Type id) { argument
66 this.type = id;
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/arch/
H A DModuleAccess.java53 public String getResource(int id) { argument
54 return getModule().getResource(id);
60 public String getResource(int id, Locale locale) { argument
61 return getModule().getResource(id, locale);
67 public LocalizedMessage makeLocalizableString(int id) { argument
68 return getModule().makeLocalizableString(id);
74 public LocalizedMessage makeLocalizableString(int id, Object[] params) { argument
75 return getModule().makeLocalizableString(id, params);
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/uma/models/
H A DUMAPolicyPermissionScope.js33 if (_.isUrl(response.id)) {
34 response = this.resolve(response.id);
36 response.name = response.id;
43 id: url,
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/user/uma/models/
H A DUMAPolicyPermissionScope.js25 if (_.isUrl(response.id)) {
26 response = this.resolve(response.id);
28 response.name = response.id;
35 id: url,
/forgerock/openidm-v4/openidm-config/src/main/java/org/forgerock/openidm/config/manage/
H A DConfigAuditState.java29 private String id; field in class:ConfigAuditState
37 * @param id ID of the config instance changed.
42 public ConfigAuditState(String id, String revision, JsonValue before, JsonValue after) { argument
43 this.id = id;
73 return id;
/forgerock/openam-v13/openam-radius/openam-radius-common/src/main/java/org/forgerock/openam/radius/common/
H A DPacket.java47 * The id of the packet.
49 protected short id = 0; field in class:Packet
75 * @param id
80 public Packet(PacketType packetType, short id, Authenticator auth) { argument
82 this.id = id;
101 return id;
107 * @param id
110 public void setIdentifier(short id) { argument
111 this.id
[all...]
/forgerock/openam/openam-radius/openam-radius-common/src/main/java/org/forgerock/openam/radius/common/
H A DPacket.java47 * The id of the packet.
49 protected short id = 0; field in class:Packet
75 * @param id
80 public Packet(PacketType packetType, short id, Authenticator auth) { argument
82 this.id = id;
101 return id;
107 * @param id
110 public void setIdentifier(short id) { argument
111 this.id
[all...]
/forgerock/openam-v13/openam-oauth/src/main/java/com/sun/identity/oauth/service/models/
H A DAccessToken.java39 private String id; field in class:AccessToken
67 return id;
70 public void setId(String id) { argument
71 this.id = id;
141 hash += (id != null ? id.hashCode() : 0);
151 if ((this.id == null && other.id != null) ||
152 (this.id !
[all...]
H A DRequestToken.java39 private String id; field in class:RequestToken
67 return id;
70 public void setId(String id) { argument
71 this.id = id;
149 hash += (id != null ? id.hashCode() : 0);
159 if ((this.id == null && other.id != null) ||
160 (this.id !
[all...]
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOpenAMResourceOwner.java38 private final String id; field in class:OpenAMResourceOwner
44 * @param id The resource owner's id.
47 OpenAMResourceOwner(String id, AMIdentity amIdentity) { argument
48 this(id, amIdentity, System.currentTimeMillis());
53 * @param id The resource owner's id.
57 OpenAMResourceOwner(String id, AMIdentity amIdentity, long authTime) { argument
58 this.id = id;
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/disco/
H A DResourceID.java47 * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
58 private String id = null; field in class:ResourceID
91 id = elem.getAttribute("id");
104 * Gets id attribute.
106 * @return id attribute.
110 return id;
114 * Sets id attribute.
116 * @param id id attribut
119 setId(String id) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/disco/
H A DResourceID.java47 * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
58 private String id = null; field in class:ResourceID
91 id = elem.getAttribute("id");
104 * Gets id attribute.
106 * @return id attribute.
110 return id;
114 * Sets id attribute.
116 * @param id id attribut
119 setId(String id) argument
[all...]
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/authorization/common/
H A DAbstractListView.js37 onDeleteClick: function (e, msg, id, callback) {
40 FormHelper.showConfirmationBeforeDeleting(msg, _.bind(this.deleteRecord, this, id, callback));
43 deleteRecord: function (id, callback) {
45 item = self.data.items.get(id),
62 editRecord: function (e, id, route) {
66 args: _.map([self.realmPath, id], encodeURIComponent),
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/resources/labels/
H A DResourceSetLabel.java34 @Title(UMA_LABEL_RESOURCE + "resourceSetLabel.id." + TITLE)
35 @Description(UMA_LABEL_RESOURCE + "resourceSetLabel.id." + DESCRIPTION)
36 private final String id; field in class:ResourceSetLabel
48 public ResourceSetLabel(String id, String name, LabelType type, Set<String> resourceSetIds) { argument
49 this.id = id;
56 return id;
90 if (id != null ? !id.equals(that.id)
[all...]
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/deployment/servers/
H A DNewServerView.js31 const routeToEdit = (id) => {
33 args: [id],
44 render ([id]) {
45 this.data.id = id;
62 ServersService.servers.clone(this.data.id, serverUrl).then((response) => {
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/authorization/common/
H A DAbstractListView.js37 onDeleteClick (e, msg, id, callback) {
40 FormHelper.showConfirmationBeforeDeleting(msg, _.bind(this.deleteRecord, this, id, callback));
43 deleteRecord (id, callback) {
45 item = self.data.items.get(id),
62 editRecord (e, id, route) {
66 args: _.map([self.realmPath, id], encodeURIComponent),
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/services/
H A DEditServiceSubSchemaView.js25 render ([realmPath, serviceType, subSchemaType, id]) {
31 id,
33 subSchemaInstanceId: decodeURIComponent(id),
44 () => ServicesService.type.subSchema.instance.get(realmPath, serviceType, subSchemaType, id),
47 realmPath, serviceType, subSchemaType, id, values),
49 () => ServicesService.type.subSchema.instance.remove(realmPath, serviceType, subSchemaType, id)
/forgerock/opendj2/src/server/org/opends/server/api/
H A DCompressedSchema.java116 // First decode the encoded attribute description id.
120 final int id = decodeId(idBytes);
123 Entry<AttributeType, Set<String>> ad = adDecodeMap.get(id);
127 .get(String.valueOf(id));
188 // First decode the encoded object class id.
192 final int id = decodeId(idBytes);
195 final Map<ObjectClass, String> ocMap = ocDecodeMap.get(id);
213 .valueOf(id));
242 Integer id = adEncodeMap.get(ad);
243 if (id
603 encodeId(final int id) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/api/
H A DCompressedSchema.java117 // First decode the encoded attribute description id.
121 final int id = decodeId(idBytes);
124 Entry<AttributeType, Set<String>> ad = adDecodeMap.get(id);
128 .get(String.valueOf(id));
189 // First decode the encoded object class id.
193 final int id = decodeId(idBytes);
196 final Map<ObjectClass, String> ocMap = ocDecodeMap.get(id);
214 .valueOf(id));
243 Integer id = adEncodeMap.get(ad);
244 if (id
604 encodeId(final int id) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/api/
H A DCompressedSchema.java117 // First decode the encoded attribute description id.
121 final int id = decodeId(idBytes);
124 Entry<AttributeType, Set<String>> ad = adDecodeMap.get(id);
128 .get(String.valueOf(id));
189 // First decode the encoded object class id.
193 final int id = decodeId(idBytes);
196 final Map<ObjectClass, String> ocMap = ocDecodeMap.get(id);
214 .valueOf(id));
243 Integer id = adEncodeMap.get(ad);
244 if (id
604 encodeId(final int id) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/api/
H A DCompressedSchema.java116 // First decode the encoded attribute description id.
120 final int id = decodeId(idBytes);
123 Entry<AttributeType, Set<String>> ad = adDecodeMap.get(id);
127 .get(String.valueOf(id));
188 // First decode the encoded object class id.
192 final int id = decodeId(idBytes);
195 final Map<ObjectClass, String> ocMap = ocDecodeMap.get(id);
213 .valueOf(id));
242 Integer id = adEncodeMap.get(ad);
243 if (id
603 encodeId(final int id) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/api/
H A DCompressedSchema.java117 // First decode the encoded attribute description id.
121 final int id = decodeId(idBytes);
124 Entry<AttributeType, Set<String>> ad = adDecodeMap.get(id);
128 .get(String.valueOf(id));
189 // First decode the encoded object class id.
193 final int id = decodeId(idBytes);
196 final Map<ObjectClass, String> ocMap = ocDecodeMap.get(id);
214 .valueOf(id));
243 Integer id = adEncodeMap.get(ad);
244 if (id
604 encodeId(final int id) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/api/
H A DCompressedSchema.java91 // First decode the encoded attribute description id.
95 final int id = decodeId(idBytes);
98 Entry<AttributeType, Set<String>> ad = adDecodeMap.get(id);
102 ERR_COMPRESSEDSCHEMA_UNRECOGNIZED_AD_TOKEN.get(id));
157 // First decode the encoded object class id.
161 final int id = decodeId(idBytes);
164 final Map<ObjectClass, String> ocMap = ocDecodeMap.get(id);
182 ERR_COMPRESSEDSCHEMA_UNKNOWN_OC_TOKEN.get(id));
208 Integer id = adEncodeMap.get(ad);
209 if (id
556 encodeId(final int id) argument
[all...]
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/dragdrop/
H A Ddragdrop-debug.js363 this.ids[sGroup][oDD.id] = oDD;
379 if (obj && obj[oDD.id]) {
380 delete obj[oDD.id];
393 if (g && this.ids[g][oDD.id]) {
394 delete this.ids[g][oDD.id];
398 delete this.handleIds[oDD.id];
405 * @param {String} sDDId the DragDrop id this element is a handle for
406 * @param {String} sHandleId the id of the element that is the drag
421 * @param {String} id the element id t
[all...]
/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/dragdrop/
H A Ddragdrop-debug.js363 this.ids[sGroup][oDD.id] = oDD;
379 if (obj && obj[oDD.id]) {
380 delete obj[oDD.id];
393 if (g && this.ids[g][oDD.id]) {
394 delete this.ids[g][oDD.id];
398 delete this.handleIds[oDD.id];
405 * @param {String} sDDId the DragDrop id this element is a handle for
406 * @param {String} sHandleId the id of the element that is the drag
421 * @param {String} id the element id t
[all...]

Completed in 131 milliseconds

1234567891011>>