Searched refs:id (Results 101 - 125 of 1565) sorted by relevance

1234567891011>>

/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DBackupDescriptor.java57 private String id; field in class:BackupDescriptor
65 * @param id the backup id.
67 public BackupDescriptor(File path, Date creationDate, Type type, String id) argument
72 this.id = id;
85 this.id = info.getBackupID();
122 return id;
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DBackupDescriptor.java58 private String id; field in class:BackupDescriptor
66 * @param id the backup id.
68 public BackupDescriptor(File path, Date creationDate, Type type, String id) argument
73 this.id = id;
86 this.id = info.getBackupID();
123 return id;
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/datamodel/
H A DBackupDescriptor.java48 private String id; field in class:BackupDescriptor
56 * @param id the backup id.
58 public BackupDescriptor(File path, Date creationDate, Type type, String id) argument
63 this.id = id;
76 this.id = info.getBackupID();
113 return id;
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/arch/
H A DLocalizedMessage.java37 * and is uses a <code>Module</code> specific resource <code>id</code> to
91 * and the <code>id</code> of the localized resource.
95 * @param id the <code>id</code> of the resource.
97 LocalizedMessage(byte moduleCode, int id) { argument
98 this(moduleCode, id, null);
104 * and the <code>id</code> of the localized resource. The optional
110 * @param id the <code>id</code> of the resource.
114 LocalizedMessage(byte moduleCode, int id, Objec argument
143 setId(int id) argument
[all...]
H A DModule.java43 * associated with a unique <code>id</code>, a unique <code>resource</code> and
84 public LocalizedMessage makeLocalizableString(int id) { argument
85 return new LocalizedMessage(getModuleCode(), id);
91 public LocalizedMessage makeLocalizableString(int id, Object[] params) { argument
92 return new LocalizedMessage(getModuleCode(), id, params);
98 public String getResource(int id) { argument
99 return getResource(new Integer(id));
106 public String getResource(int id, Locale locale) { argument
107 return getResource(new Integer(id), locale);
246 private String getResource(Object id) { argument
254 getResource(Object id, Locale locale) argument
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-common/src/main/js/org/forgerock/openidm/ui/common/delegates/
H A DInternalUserDelegate.js28 obj.patchSelectedUserAttributes = function(id, rev, patchDefinitionObject, successCallback, errorCallback, noChangesCallback) {
31 return obj.readEntity(id).then(function(user) {
44 return obj.updateEntity(id, user, successCallback, errorCallback);
/forgerock/openidm-v4/openidm-zip/src/main/resources/samples/historicalaccountlinking/script/
H A DonUnlink-managedUser_systemLdapAccounts.js40 id, rev, account, result, queryResult;
54 id = account._refProperties._id;
58 result = openidm.update(historicalAccountsCollection + "/" + id, rev, account);
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/services/global/
H A DSitesService.js44 const getValues = (id) => obj.serviceCall({
45 url: fetchUrl.default(`/global-config/sites/${id}`, { realm: false }),
66 get: (id) =>
67 Promise.all([getSchema(), getValues(id)]).then((response) => ({
78 update: (id, data, etag) =>
80 url: fetchUrl.default(`/global-config/sites/${id}`, { realm: false }),
85 remove: (id, etag) => {
86 const remove = (id, etag) => obj.serviceCall({
87 url: fetchUrl.default(`/global-config/sites/${id}`, { realm: false }),
93 return getValues(id)
[all...]
H A DAuthenticationService.js31 function getModuleUrl (id) {
32 return id === "core" ? "" : `/modules/${id}`;
55 get: (id) => {
56 const moduleUrl = getModuleUrl(id);
75 update (id, data) {
77 url: fetchUrl.default(`/global-config/authentication${getModuleUrl(id)}`, { realm: false }),
/forgerock/openam-v13/openam-distribution/src/main/amserver/scripts/sql/
H A Damhadbcreate.sql3 id varchar(100) not null primary key,
11 create index sunwam_session_id on sunwam_session(id);
17 id varchar(100) not null,
21 primary key(id,blob_chunk_seq)
23 create index sunwam_session_ext_id on sunwam_session_ext(id);
/forgerock/openam/openam-distribution/src/main/amserver/scripts/sql/
H A Damhadbcreate.sql3 id varchar(100) not null primary key,
11 create index sunwam_session_id on sunwam_session(id);
17 id varchar(100) not null,
21 primary key(id,blob_chunk_seq)
23 create index sunwam_session_ext_id on sunwam_session_ext(id);
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/dragdrop/
H A Ddragdrop-min.js11 this.ids[sGroup][oDD.id]=oDD;},removeDDFromGroup:function(oDD,sGroup){if(!this.ids[sGroup]){this.ids[sGroup]={};}
12 var obj=this.ids[sGroup];if(obj&&obj[oDD.id]){delete obj[oDD.id];}},_remove:function(oDD){for(var g in oDD.groups){if(g&&this.ids[g][oDD.id]){delete this.ids[g][oDD.id];}}
13 delete this.handleIds[oDD.id];},regHandle:function(sDDId,sHandleId){if(!this.handleIds[sDDId]){this.handleIds[sDDId]={};}
14 this.handleIds[sDDId][sHandleId]=sHandleId;},isDragDrop:function(id){return(this.getDDById(id))?true:false;},getRelated:function(p_oDD,bTargetsOnly){var oDDs=[];for(var i in p_oDD.groups){for(j in this.ids[i]){var dd=this.ids[i][j];if(!this.isTypeOfDD(dd)){continue;}
16 return oDDs;},isLegalTarget:function(oDD,oTargetDD){var targets=this.getRelated(oDD,true);for(var i=0,len=targets.length;i<len;++i){if(targets[i].id==oTargetDD.id){retur
[all...]
H A Ddragdrop.js361 this.ids[sGroup][oDD.id] = oDD;
377 if (obj && obj[oDD.id]) {
378 delete obj[oDD.id];
391 if (g && this.ids[g][oDD.id]) {
392 delete this.ids[g][oDD.id];
395 delete this.handleIds[oDD.id];
402 * @param {String} sDDId the DragDrop id this element is a handle for
403 * @param {String} sHandleId the id of the element that is the drag
418 * @param {String} id the element id t
[all...]
/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/dragdrop/
H A Ddragdrop-min.js11 this.ids[sGroup][oDD.id]=oDD;},removeDDFromGroup:function(oDD,sGroup){if(!this.ids[sGroup]){this.ids[sGroup]={};}
12 var obj=this.ids[sGroup];if(obj&&obj[oDD.id]){delete obj[oDD.id];}},_remove:function(oDD){for(var g in oDD.groups){if(g&&this.ids[g][oDD.id]){delete this.ids[g][oDD.id];}}
13 delete this.handleIds[oDD.id];},regHandle:function(sDDId,sHandleId){if(!this.handleIds[sDDId]){this.handleIds[sDDId]={};}
14 this.handleIds[sDDId][sHandleId]=sHandleId;},isDragDrop:function(id){return(this.getDDById(id))?true:false;},getRelated:function(p_oDD,bTargetsOnly){var oDDs=[];for(var i in p_oDD.groups){for(j in this.ids[i]){var dd=this.ids[i][j];if(!this.isTypeOfDD(dd)){continue;}
16 return oDDs;},isLegalTarget:function(oDD,oTargetDD){var targets=this.getRelated(oDD,true);for(var i=0,len=targets.length;i<len;++i){if(targets[i].id==oTargetDD.id){retur
[all...]
H A Ddragdrop.js361 this.ids[sGroup][oDD.id] = oDD;
377 if (obj && obj[oDD.id]) {
378 delete obj[oDD.id];
391 if (g && this.ids[g][oDD.id]) {
392 delete this.ids[g][oDD.id];
395 delete this.handleIds[oDD.id];
402 * @param {String} sDDId the DragDrop id this element is a handle for
403 * @param {String} sHandleId the id of the element that is the drag
418 * @param {String} id the element id t
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/
H A DMapResourceView.js113 message: this.$el.find("#saveMappingDialog").clone().attr("id","saveMappingDialogClone"),
151 id:"mappingSaveCancel",
157 id:"mappingSaveOkay",
353 displayDetails: function(id, details) {
355 this.$el.find("#"+id +" .resource-small-icon").attr('class', "resource-small-icon " +details.iconClass);
357 this.$el.find("#"+id +" .resource-type-name").html(details.displayName);
358 this.$el.find("#"+id +" .resource-given-name").html(details.name);
359 this.$el.find("#"+id +" .edit-objecttype").show();
361 this.$el.find("#"+id +" .object-type-name").hide();
362 this.$el.find("#"+id
[all...]
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/common/schema/
H A DEditSchemaComponent.js48 const PSEUDO_TAB = { id: _.uniqueId("pseudo_tab_"), title: $.t("console.common.configuration") };
49 const SUBSCHEMA_TAB = { id: "subschema", title: $.t("console.common.secondaryConfigurations") };
50 const DEFAULT_SCRIPTS_TAB = { id: "defaultScripts", title: "Default Scripts" };
62 .map((value, key) => ({ id: key, order: value.propertyOrder, title: value.title }))
122 createBody: (id) => {
123 if (id === SUBSCHEMA_TAB.id) {
131 } else if (id === PSEUDO_TAB.id) {
136 } else if (id
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/flatfile/
H A DFlatFileEventManager.java57 String id = SMSUtils.getUniqueID();
58 listeners.put(id, changeListener);
68 return (id);
71 synchronized void removeObjectChangeListener(String id) { argument
72 listeners.remove(id);
/forgerock/openidm-v4/custom-scripted-connector-bundler/src/main/java/org/forgerock/openidm/tools/scriptedbundler/
H A DCustomObjectType.java39 * "id" : "__GROUP__",
80 private String id; field in class:CustomObjectType
111 public String getId() { return id; }
116 * @param id
118 public void setId(String id) { this.id = id; } argument
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/
H A DResourceOwner.java37 private final String id; field in class:ResourceOwner
43 * @param id The resource owner's id.
47 ResourceOwner(String id, AMIdentity amIdentity, long authTime) { argument
48 this.id = id;
56 * @return The resource owner id.
59 return id;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/flatfile/
H A DFlatFileEventManager.java57 String id = SMSUtils.getUniqueID();
58 listeners.put(id, changeListener);
68 return (id);
71 synchronized void removeObjectChangeListener(String id) { argument
72 listeners.remove(id);
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/session/model/
H A DSMSessionData.java42 private String id = null; field in class:SMSessionData
49 * Sets session id.
51 * @param value session id.
54 id = value;
58 * Sets user id.
60 * @param value user id.
108 return id;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/common/
H A DDNUtils.java84 String id = dn;
87 id = noTypes ? rdnValueFromDn(name) : name.rdn().toString();
90 return id;
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/backends/pluggable/
H A DUtils.java54 public static EntryID id(long id) { argument
55 return new EntryID(id);
/forgerock/openidm-v4/openidm-ui/openidm-ui-common/src/main/js/org/forgerock/openidm/ui/common/workflow/tasks/
H A DTasksMenuView.js49 var id = $(event.target).parents(".list-group-item").find("[name=taskId]").val();
51 this.requeueTask(id, _.bind(function() {
72 id = parent.find("input[name=taskId]").val(),
81 id = null;
87 if(id) {
88 task = this.getTaskFromCacheById(id);
95 "id": id
101 getTaskFromCacheById: function(id) {
108 if(process.tasks[i]._id === id) {
[all...]

Completed in 144 milliseconds

1234567891011>>