Searched refs:mapping (Results 1 - 25 of 163) sorted by relevance

1234567

/forgerock/openam-v13/openam-authentication/openam-auth-common/src/main/java/org/forgerock/openam/authentication/modules/common/mapping/
H A Dpackage-info.java17 * This package contains the mapping interfaces and default implementations that are common for use by all
22 package org.forgerock.openam.authentication.modules.common.mapping;
/forgerock/openam/openam-authentication/openam-auth-common/src/main/java/org/forgerock/openam/authentication/modules/common/mapping/
H A Dpackage-info.java17 * This package contains the mapping interfaces and default implementations that are common for use by all
22 package org.forgerock.openam.authentication.modules.common.mapping;
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/util/
H A DLinkQualifierUtils.js30 obj.checkLinkQualifier = function (mapping) {
33 if(mapping.linkQualifiers !== undefined) {
35 if(mapping.linkQualifiers.type) {
36 if(this.model.linkQualifier[mapping.name] !== null && this.model.linkQualifier[mapping.name] !== undefined) {
37 linkQualifierPromise.resolve(this.model.linkQualifier[mapping.name]);
39 ScriptDelegate.evalLinkQualifierScript(mapping.linkQualifiers).then(_.bind(function(result){
40 this.model.linkQualifier[mapping.name] = result;
42 linkQualifierPromise.resolve(this.model.linkQualifier[mapping.name]);
46 this.model.linkQualifier[mapping
[all...]
/forgerock/openidm-v4/openidm-zip/src/main/resources/bin/defaults/script/ui/
H A DmappingDetails.js24 (function (mapping) {
37 if(!mapping || mapping === m.name){
39 "_queryFilter": '/entryType eq "start" AND !(/reconAction eq "reconById") AND /mapping eq "' + m.name + '"',
53 request.additionalParameters.mapping
H A DcorrelateTreeToQueryFilter.js33 valueForTargetField = function (mapping, field) {
39 for (j = 0; j < mapping.properties.length; j++) {
40 p = mapping.properties[j];
116 expressionParser = function (mapping, node) {
121 resultArray.push(container[j] + " eq \"" + valueForTargetField(mapping, container[j]) + "\"");
123 tmp = expressionParser(mapping, container[j]);
143 if (syncConfig.mappings[i].name === mapping) {
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/mapping/
H A DAssociationView.js19 define("org/forgerock/openidm/ui/admin/mapping/AssociationView", [
21 "org/forgerock/openidm/ui/admin/mapping/util/MappingAdminAbstractView",
22 "org/forgerock/openidm/ui/admin/mapping/association/DataAssociationManagementView",
23 "org/forgerock/openidm/ui/admin/mapping/association/IndividualRecordValidationView",
24 "org/forgerock/openidm/ui/admin/mapping/association/ReconciliationQueryFiltersView",
25 "org/forgerock/openidm/ui/admin/mapping/association/AssociationRuleView"
34 template: "templates/admin/mapping/AssociationTemplate.html",
39 var mapping = this.getCurrentMapping();
43 if (_.has(IndividualRecordValidationView.model, "mapping")) {
44 if (_.has(IndividualRecordValidationView.model.mapping, scrip
[all...]
H A DBehaviorsView.js19 define("org/forgerock/openidm/ui/admin/mapping/BehaviorsView", [
21 "org/forgerock/openidm/ui/admin/mapping/util/MappingAdminAbstractView",
27 "org/forgerock/openidm/ui/admin/mapping/behaviors/PoliciesView",
28 "org/forgerock/openidm/ui/admin/mapping/behaviors/SituationalEventScriptsView",
29 "org/forgerock/openidm/ui/admin/mapping/behaviors/ReconciliationScriptView",
30 "org/forgerock/openidm/ui/admin/mapping/behaviors/SingleRecordReconciliationView",
31 "org/forgerock/openidm/ui/admin/mapping/util/MappingUtils"
47 template: "templates/admin/mapping/BehaviorsTemplate.html",
50 mapping: null,
58 this.mapping
[all...]
H A DMappingBaseView.js19 define("org/forgerock/openidm/ui/admin/mapping/MappingBaseView", [
22 "org/forgerock/openidm/ui/admin/mapping/util/MappingAdminAbstractView",
57 template: "templates/admin/mapping/MappingTemplate.html",
99 UIUtils.confirmDialog($.t("templates.mapping.confirmDeleteMapping", {"mappingName": this.data.mapping.name}), "danger", _.bind(function(){
100 this.data.syncConfig.mappings = _.filter(this.data.syncConfig.mappings, function(mapping) {
101 return mapping.name !== this.data.mapping.name;
113 if(this.data.recon._id === reconStatus._id && this.data.recon.mapping === this.getCurrentMapping().name){
120 this.data.syncStatus = $.t("templates.mapping
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/mapping/util/
H A DMappingAdminAbstractView.js19 define("org/forgerock/openidm/ui/admin/mapping/util/MappingAdminAbstractView", [
75 setCurrentMapping: function(mapping) {
76 currentMapping = mapping;
77 return mapping;
100 AbstractMappingSave: function(mapping, callback) {
101 var i = _.findIndex(syncConfig.mappings, {name: mapping.name});
104 currentMapping = syncConfig.mappings[i] = mapping;
H A DMappingScriptsView.js19 define("org/forgerock/openidm/ui/admin/mapping/util/MappingScriptsView", [
21 "org/forgerock/openidm/ui/admin/mapping/util/MappingAdminAbstractView",
34 template: "templates/admin/mapping/util/MappingScriptsTemplate.html",
40 this.model.mapping = this.getCurrentMapping();
48 var addedEvents = _.keys(_.pick(this.model.mapping, this.model.scripts)),
59 currentObject: this.model.mapping,
70 if (_.has(this.model.mapping, eventName)) {
71 defaultScript = this.model.mapping[eventName];
101 this.model.mapping[eventName] = scriptHook;
102 } else if (_.has(this.model.mapping, eventNam
[all...]
/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/sync/impl/
H A DLink.java63 * current mapping context (source/target object set).
70 // The mapping associated with this link view.
71 // This link view is specific to the direction of this mapping context
72 private final ObjectMapping mapping; field in class:Link
80 // The id linked in the source object set of the mapping.
81 // This link view is specific to the direction of the mapping context
84 // The id linked in the target object set of the mapping.
85 // This link view is specific to the direction of the mapping context
105 * @param mapping TODO.
107 public Link(ObjectMapping mapping) { argument
320 getLinksForMapping(ObjectMapping mapping, String linkQualifier) argument
[all...]
H A DAbstractSyncAuditEventLogger.java42 private String mapping; field in class:AbstractSyncAuditEventLogger
51 * @param mapping
54 public AbstractSyncAuditEventLogger(ObjectMapping.SyncOperation syncOperation, String mapping, argument
58 this.mapping = mapping;
116 * @param mapping
118 public void setMapping(String mapping) { argument
119 this.mapping = mapping;
196 .mapping(mappin
[all...]
H A DReconcile.java29 * Reconcile the given mapping according to the requested options
31 * @param mapping the mapping configuration
40 JsonValue mapping,
38 reconcile( ReconciliationService.ReconAction reconAction, JsonValue mapping, Boolean synchronous, JsonValue reconParams, JsonValue config) argument
H A DSynchronizationService.java186 for (ObjectMapping mapping : mappingList) {
187 mapping.initRelationships(this, mappingList);
192 * Return the {@link ObjectMapping} for a the mapping {@code name}.
194 * @param name the mapping name
196 * @throws SynchronizationException if no mapping exists by the given name.
199 for (ObjectMapping mapping : mappings) {
200 if (mapping.getName().equals(name)) {
201 return mapping;
204 throw new SynchronizationException("No such mapping: " + name);
210 * @param mappingConfig the mapping configuratio
244 sync(Context context, ObjectMapping mapping) argument
[all...]
/forgerock/openidm-v4/openidm-zip/src/main/resources/bin/defaults/script/audit/
H A DautoPurgeAuditRecon.js30 * Strings must contain the mapping(s) name and can use "%" as a wild card value that will be used in a LIKE condition
31 * Objects provide the ability to specify mapping(s) to include/exclude and must be of the form:
39 * numOfRecons: The number of recon summary records to keep for a given mapping (this includes all child records).
79 if(typeof idMap[result[i].mapping] === "undefined"){
80 idMap[result[i].mapping] = [];
83 if(idMap[result[i].mapping].length <= numOfRecons){
84 idMap[result[i].mapping].push(result[i].reconId);
145 // Modifies the mapping name containing ONLY the wildcard character to support a special a case with OrientDB
146 obj.getMapping = function(mapping) {
147 if (mapping
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/mapping/association/
H A DAssociationRuleView.js19 define("org/forgerock/openidm/ui/admin/mapping/association/AssociationRuleView", [
22 "org/forgerock/openidm/ui/admin/mapping/util/MappingAdminAbstractView",
25 "org/forgerock/openidm/ui/admin/mapping/association/correlationQuery/CorrelationQueryDialog",
41 template: "templates/admin/mapping/association/AssociationRuleTemplate.html",
64 this.model.mapping = this.getCurrentMapping();
71 this.model.addedLinkQualifiers = _.union(_.pluck(this.model.mapping.correlationQuery, "linkQualifier"), _.pluck(this.model.changes, "linkQualifier"));
74 if(_.has(this.model.mapping, "correlationQuery") && !_.isArray(this.model.mapping.correlationQuery)) {
75 this.model.mapping.correlationQuery.linkQualifier = "default";
76 this.model.mapping
[all...]
H A DReconciliationQueryFiltersView.js19 define("org/forgerock/openidm/ui/admin/mapping/association/ReconciliationQueryFiltersView", [
21 "org/forgerock/openidm/ui/admin/mapping/util/MappingAdminAbstractView",
24 "org/forgerock/openidm/ui/admin/mapping/util/QueryFilterEditor"
33 template: "templates/admin/mapping/association/ReconciliationQueryFiltersTemplate.html",
51 this.model.mapping = this.getCurrentMapping();
57 qe.resource = this.model.mapping[qe.type];
58 qe.editor = this.renderEditor(qe.query, this.model.mapping[qe.query], qe.resource);
112 this.model.mapping[qe.query] = queries[qe.query];
115 this.AbstractMappingSave(this.model.mapping, _.bind(function() {
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/mapping/behaviors/
H A DSingleRecordReconciliationGridView.js19 define("org/forgerock/openidm/ui/admin/mapping/behaviors/SingleRecordReconciliationGridView", [
22 "org/forgerock/openidm/ui/admin/mapping/util/MappingAdminAbstractView",
34 template: "templates/admin/mapping/behaviors/SingleRecordReconciliationGridTemplate.html",
43 reconDelegate.triggerReconById(this.data.mapping.name, conf.globalData.testSyncSource._id).then(_.bind(function(recon) {
52 this.data.mapping = this.getCurrentMapping();
75 if (conf.globalData.testSyncSource && this.data.mapping.properties.length){
76 this.data.sampleSource_txt = conf.globalData.testSyncSource[this.data.mapping.properties[0].source];
79 reconDelegate.getLastAuditForObjectId(reconId, "sourceObjectId", this.data.mapping.source + "/" + conf.globalData.testSyncSource._id).then(_.bind(function(audit) {
98 if (targetObjectId && targetObjectId.replace(this.data.mapping.target + "/", "") !== "null") {
99 searchDelegate.searchResults(this.data.mapping
[all...]
H A DSingleRecordReconciliationView.js19 define("org/forgerock/openidm/ui/admin/mapping/behaviors/SingleRecordReconciliationView", [
22 "org/forgerock/openidm/ui/admin/mapping/util/MappingAdminAbstractView",
25 "org/forgerock/openidm/ui/admin/mapping/util/MappingUtils",
26 "org/forgerock/openidm/ui/admin/mapping/behaviors/SingleRecordReconciliationGridView"
35 template: "templates/admin/mapping/behaviors/SingleRecordReconciliationTemplate.html",
47 searchDelegate.searchResults(this.data.mapping.source,["_id"],conf.globalData.testSyncSource._id,"eq").then(_.bind(function(qry){
67 this.data.mapping = this.getCurrentMapping();
84 var autocompleteProps = _.pluck(this.data.mapping.properties,"source").slice(0,this.getNumRepresentativeProps());
86 mappingUtils.setupSampleSearch($("#findSampleSource",this.$el), this.data.mapping, autocompleteProps, _.bind(function(item) {
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/mapping/scheduling/
H A DLiveSyncView.js19 define("org/forgerock/openidm/ui/admin/mapping/scheduling/LiveSyncView", [
22 "org/forgerock/openidm/ui/admin/mapping/util/MappingAdminAbstractView",
36 template: "templates/admin/mapping/scheduling/LiveSyncTemplate.html",
43 mapping: {},
53 this.model.mapping = _.omit(this.getCurrentMapping(), "recon");
60 if (this.model.mapping.hasOwnProperty("enableSync")) {
61 this.$el.find(".liveSyncEnabled").prop('checked', this.model.mapping.enableSync);
74 // There is a liveSync Scheduler and it is enabled and the source matches the source of the mapping
75 if (schedule.invokeService.indexOf("provisioner") >= 0 && schedule.enabled && schedule.invokeContext.source === this.model.mapping.source) {
89 // The mapping i
[all...]
H A DSchedulerView.js19 define("org/forgerock/openidm/ui/admin/mapping/scheduling/SchedulerView", [
22 "org/forgerock/openidm/ui/admin/mapping/util/MappingAdminAbstractView",
37 template: "templates/admin/mapping/scheduling/SchedulerTemplate.html",
44 mapping: {}
51 this.model.mapping = _.omit(this.getCurrentMapping(), "recon");
63 if (schedule.invokeService.indexOf("sync") >= 0 && schedule.invokeContext.mapping === this.model.mapping.name) {
118 "mapping": this.model.mapping.name
/forgerock/openam-v13/openam-sts/openam-client-sts/src/test/java/org/forgerock/openam/sts/config/user/
H A DAuthTargetMappingTest.java137 AuthTargetMapping mapping = AuthTargetMapping
142 assertEquals(mapping, AuthTargetMapping.fromJson(mapping.toJson()));
147 AuthTargetMapping mapping = AuthTargetMapping
157 JsonParser parser = new ObjectMapper().getFactory().createParser(mapping.toJson().toString());
160 assertEquals(mapping, AuthTargetMapping.fromJson(new JsonValue(content)));
165 AuthTargetMapping mapping = AuthTargetMapping
170 assertEquals(mapping, AuthTargetMapping.marshalFromAttributeMap(mapping.marshalToAttributeMap()));
172 mapping
[all...]
/forgerock/openam/openam-sts/openam-client-sts/src/test/java/org/forgerock/openam/sts/config/user/
H A DAuthTargetMappingTest.java137 AuthTargetMapping mapping = AuthTargetMapping
142 assertEquals(mapping, AuthTargetMapping.fromJson(mapping.toJson()));
147 AuthTargetMapping mapping = AuthTargetMapping
157 JsonParser parser = new ObjectMapper().getFactory().createParser(mapping.toJson().toString());
160 assertEquals(mapping, AuthTargetMapping.fromJson(new JsonValue(content)));
165 AuthTargetMapping mapping = AuthTargetMapping
170 assertEquals(mapping, AuthTargetMapping.marshalFromAttributeMap(mapping.marshalToAttributeMap()));
172 mapping
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/dashboard/widgets/
H A DMappingReconResultsWidget.js79 currentMapping = _.find(this.data.sync.mappings, function(mapping){
80 return mapping.recon;
102 reconResultRender: function(mapping, recon, callback) {
107 this.data.mapping = mapping;
112 _.each(this.data.sync.mappings, function(mapping){
113 if(mapping.name !== this.data.mapping.name && mapping.recon) {
114 list.append('<li data-order="' + orderCounter + '" class="recon-list-item">' + mapping
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/role/
H A DRoleEntitlementsListView.js94 //if no other roles have this assignmentName then remove it from each mapping that has the assignment in it's assignmentsToMap list
98 sync.mappings = _.map(sync.mappings,function(mapping) {
99 if(mapping.assignmentsToMap) {
100 mapping.assignmentsToMap = _.reject(mapping.assignmentsToMap, function(assignment) { return assignment === assignmentName; });
102 if(!mapping.assignmentsToMap.length) {
103 delete mapping.assignmentsToMap;
107 return mapping;

Completed in 131 milliseconds

1234567