Searched refs:mappings (Results 1 - 25 of 75) sorted by relevance

123

/forgerock/openam-v13/openam-federation/openam-federation-library/src/test/java/com/sun/identity/saml2/common/
H A DSAML2UtilsTest.java59 List<String> mappings = new ArrayList<>(6);
61 mappings.add("invalid entry");
62 mappings.add("name1=value");
63 mappings.add("name2=\"static value\"");
64 mappings.add("name3=\"static cn=value\"");
65 mappings.add("urn:oasis:names:tc:SAML:2.0:attrname-format:uri|urn:mace:dir:attribute-def:name4=value");
66 mappings.add("urn:oasis:names:tc:SAML:2.0:attrname-format:uri|name5=\"static value\"");
68 Map<String, String> mappedAttributes = SAML2Utils.getMappedAttributes(mappings);
/forgerock/openam/openam-federation/openam-federation-library/src/test/java/com/sun/identity/saml2/common/
H A DSAML2UtilsTest.java59 List<String> mappings = new ArrayList<>(6);
61 mappings.add("invalid entry");
62 mappings.add("name1=value");
63 mappings.add("name2=\"static value\"");
64 mappings.add("name3=\"static cn=value\"");
65 mappings.add("urn:oasis:names:tc:SAML:2.0:attrname-format:uri|urn:mace:dir:attribute-def:name4=value");
66 mappings.add("urn:oasis:names:tc:SAML:2.0:attrname-format:uri|name5=\"static value\"");
68 Map<String, String> mappedAttributes = SAML2Utils.getMappedAttributes(mappings);
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/webservices/
H A DWSPPServiceDSAttributeMapListAddViewBean.java73 Set mappings = (Set)attrValues.get(
76 if ((mappings == null) || mappings.isEmpty()) {
77 mappings = new OrderedSet();
80 (OrderedSet)mappings);
83 mappings.add(
H A DWSPPServiceDSAttributeMapListEditViewBean.java117 OrderedSet mappings = (OrderedSet)mapAttrs.get(
125 mappings.set(index, val);
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/webservices/
H A DWSPPServiceDSAttributeMapListAddViewBean.java73 Set mappings = (Set)attrValues.get(
76 if ((mappings == null) || mappings.isEmpty()) {
77 mappings = new OrderedSet();
80 (OrderedSet)mappings);
83 mappings.add(
H A DWSPPServiceDSAttributeMapListEditViewBean.java117 OrderedSet mappings = (OrderedSet)mapAttrs.get(
125 mappings.set(index, val);
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/mapping/util/
H A DMappingAdminAbstractView.js101 var i = _.findIndex(syncConfig.mappings, {name: mapping.name});
104 currentMapping = syncConfig.mappings[i] = mapping;
105 ConfigDelegate.updateEntity("sync", {"mappings": syncConfig.mappings}).then(_.bind(callback, this));
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/config/
H A DThemeConfiguration.js82 mappings: [
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/dashboard/widgets/
H A DResourceListWidget.js54 sync.mappings = _.sortBy(_.sortBy(sync.mappings, 'name'));
55 this.data.mappings = sync.mappings.slice(0, 4);
H A DMappingReconResultsWidget.js79 currentMapping = _.find(this.data.sync.mappings, function(mapping){
83 if(!currentMapping && this.data.sync.mappings) {
84 currentMapping = this.data.sync.mappings[0];
112 _.each(this.data.sync.mappings, function(mapping){
210 mapping = this.data.sync.mappings[selectedIndex],
/forgerock/openidm-v4/openidm-zip/src/main/resources/bin/defaults/script/ui/
H A DcorrelateTreeToQueryFilter.js142 while (i < syncConfig.mappings.length) {
143 if (syncConfig.mappings[i].name === mapping) {
149 if (i < syncConfig.mappings.length) {
151 expression = expressionParser(syncConfig.mappings[i], expressionTree);
H A DmappingDetails.js30 syncConfig = { "mappings" : [] };
34 _.each(syncConfig.mappings, function(m){
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/config/
H A DThemeConfiguration.js82 mappings: [
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/assignment/
H A DAddAssignmentView.js52 this.data.mappings = sync.mappings;
/forgerock/openidm-v4/openidm-zip/src/main/resources/bin/defaults/script/audit/
H A DautoPurgeAuditRecon.js29 * mappings: An array of mappings to prune. Each element in the array can either be a String or (optionally) an Object.
44 (function (mappings, purgeType, numOfRecons, intervalUnit, intervalValue, scheduleName) {
153 // Set the default value for mappings if not configured
155 if (typeof mappings === "undefined") {
156 mappings = ["%%"];
159 for(i = 0;i < mappings.length;i++){
160 var includeMapping, excludeMappings, mapping = mappings[i];
185 input.mappings,
/forgerock/openam-v13/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/config/user/
H A DAuthTargetMapping.java66 public static final String AUTH_TARGET_MAPPINGS = "deployment-auth-target-mappings";
70 private final Map<String, AuthTarget> mappings = new HashMap<String, AuthTarget>(); field in class:AuthTargetMapping.AuthTargetMappingBuilder
94 mappings.put(tokenTypeId.getId(), new AuthTarget(authIndexType, authIndexValue, context));
124 mappings.put(tokenTypeId, new AuthTarget(authIndexType, authIndexValue, context));
257 private final Map<String, AuthTarget> mappings; field in class:AuthTargetMapping
260 this.mappings = Collections.unmodifiableMap(builder.mappings);
272 return mappings.get(tokenTypeId.getId());
278 for (Map.Entry<String, AuthTarget> entry : mappings.entrySet()) {
288 return mappings
[all...]
/forgerock/openam/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/config/user/
H A DAuthTargetMapping.java66 public static final String AUTH_TARGET_MAPPINGS = "deployment-auth-target-mappings";
70 private final Map<String, AuthTarget> mappings = new HashMap<String, AuthTarget>(); field in class:AuthTargetMapping.AuthTargetMappingBuilder
94 mappings.put(tokenTypeId.getId(), new AuthTarget(authIndexType, authIndexValue, context));
124 mappings.put(tokenTypeId, new AuthTarget(authIndexType, authIndexValue, context));
257 private final Map<String, AuthTarget> mappings; field in class:AuthTargetMapping
260 this.mappings = Collections.unmodifiableMap(builder.mappings);
272 return mappings.get(tokenTypeId.getId());
278 for (Map.Entry<String, AuthTarget> entry : mappings.entrySet()) {
288 return mappings
[all...]
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/test/js/org/forgerock/openam/ui/common/util/
H A DThemeManagerTest.js45 mappings: [
147 it("allows mappings to specify regular expressions to match realms", function () {
148 themeConfig.mappings[0].realms[0] = /^\/hello.*/;
156 themeConfig.mappings.push({
166 themeConfig.mappings.push({
174 it("allows mappings to specify regular expressions to match authentication chains", function () {
176 themeConfig.mappings.push({
188 themeConfig.mappings.push({
194 themeConfig.mappings.push({
200 themeConfig.mappings
[all...]
/forgerock/openam/openam-ui/openam-ui-ria/src/test/js/org/forgerock/openam/ui/common/util/
H A DThemeManagerTest.js52 mappings: [
153 it("allows mappings to specify regular expressions to match realms", () => {
154 themeConfig.mappings[0].realms[0] = /^\/hello.*/;
162 themeConfig.mappings.push({
172 themeConfig.mappings.push({
180 it("allows mappings to specify regular expressions to match authentication chains", () => {
182 themeConfig.mappings.push({
194 themeConfig.mappings.push({
200 themeConfig.mappings.push({
206 themeConfig.mappings
[all...]
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/common/util/
H A DThemeManager.js80 return _.every(matcherMappings, function (mappings, matcher) {
82 return _.some(mappings, function (mapping) {
93 * Find the appropriate theme for the current environment by using the theme configuration mappings.
102 if (!_.isArray(ThemeConfiguration.mappings)) {
105 var matchedThemeMapping = _.find(ThemeConfiguration.mappings,
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/common/util/
H A DThemeManager.js74 return _.every(matcherMappings, function (mappings, matcher) {
76 return _.some(mappings, function (mapping) {
87 * Find the appropriate theme for the current environment by using the theme configuration mappings.
96 if (!_.isArray(ThemeConfiguration.mappings)) {
99 var matchedThemeMapping = _.find(ThemeConfiguration.mappings,
/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/sync/impl/
H A DSynchronizationService.java83 * The resource provider for requests on /sync. Describes the synchronization mappings and dispatches
84 * actions to synchronize between source and targets listed in the synchronization mappings described
115 /** Object mappings. Order of mappings evaluated during synchronization is significant. */
116 private volatile ArrayList<ObjectMapping> mappings = null; field in class:SynchronizationService
158 mappings = new ArrayList<ObjectMapping>();
159 initMappings(mappings, config);
167 mappings = null;
176 mappings = newMappings;
183 for (JsonValue jv : config.get("mappings")
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/delegates/
H A DReconDelegate.js95 obj.triggerRecons = function (mappings, suppressSpinner) {
99 _.each(mappings, function (m) {
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/role/
H A DRoleEntitlementsListView.js98 sync.mappings = _.map(sync.mappings,function(mapping) {
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/test/qunit/mapping/
H A DpropertyMappingTest.js65 "sync": {"mappings":[{"target":"managed/user","properties":[{"target":"displayName","source":"cn"},{"target":"description","source":"description"},{"target":"givenName","source":"givenName"},{"target":"mail","source":"mail"},{"target":"telephoneNumber","source":"telephoneNumber"},{"target":"sn","source":"sn"},{"target":"userName","source":"uid"}],"source":"system/ldap/account","policies":[{"action":"UPDATE","situation":"CONFIRMED"},{"action":"UPDATE","situation":"FOUND"},{"action":"CREATE","situation":"ABSENT"},{"action":"EXCEPTION","situation":"AMBIGUOUS"},{"action":"CREATE","situation":"MISSING"},{"action":"DELETE","situation":"SOURCE_MISSING"},{"action":"IGNORE","situation":"UNQUALIFIED"},{"action":"IGNORE","situation":"UNASSIGNED"}],"name":"systemLdapAccounts_managedUser"},{"target":"system/ldap/account","links":"systemLdapAccounts_managedUser","properties":[{"target":"givenName","source":"givenName"},{"target":"sn","source":"sn"},{"target":"cn","source":"","transform":{"type":"text/javascript","source":"source.displayName || (source.givenName + ' ' + source.sn);"}},{"target":"uid","source":"userName"},{"target":"description","source":"description","condition":{"type":"text/javascript","source":"!!object.description"}},{"target":"mail","source":"mail"},{"target":"userPassword","transform":{"type":"text/javascript","source":"openidm.decrypt(source);"},"source":"password","condition":{"type":"text/javascript","source":"object.password != null"}},{"target":"telephoneNumber","source":"telephoneNumber","condition":{"type":"text/javascript","source":"!!object.telephoneNumber"}}],"source":"managed/user","onCreate":{"type":"text/javascript","source":"target.dn = 'uid=' + source.userName + ',ou=People,dc=example,dc=com';"},"policies":[{"action":"UPDATE","situation":"CONFIRMED"},{"action":"LINK","situation":"FOUND"},{"action":"CREATE","situation":"ABSENT"},{"action":"IGNORE","situation":"AMBIGUOUS"},{"action":"IGNORE","situation":"MISSING"},{"action":"DELETE","situation":"SOURCE_MISSING"},{"action":"IGNORE","situation":"UNQUALIFIED"},{"action":"IGNORE","situation":"UNASSIGNED"}],"name":"managedUser_systemLdapAccounts"},{"target":"managed/user","properties":[],"source":"system/ldap/__ALL__","policies":[{"action":"ASYNC","situation":"ABSENT"},{"action":"ASYNC","situation":"ALL_GONE"},{"action":"ASYNC","situation":"AMBIGUOUS"},{"action":"ASYNC","situation":"CONFIRMED"},{"action":"ASYNC","situation":"FOUND"},{"action":"ASYNC","situation":"FOUND_ALREADY_LINKED"},{"action":"ASYNC","situation":"LINK_ONLY"},{"action":"ASYNC","situation":"MISSING"},{"action":"ASYNC","situation":"SOURCE_IGNORED"},{"action":"ASYNC","situation":"SOURCE_MISSING"},{"action":"ASYNC","situation":"TARGET_IGNORED"},{"action":"ASYNC","situation":"UNASSIGNED"},{"action":"ASYNC","situation":"UNQUALIFIED"}],"name":"sourceLdap__ALL___managedUser"}]},
69 AttributesGridView.setCurrentMapping(syncDetails.sync.mappings[0]);
71 LinkQualifierUtils.setLinkQualifier(["default", "test"], syncDetails.sync.mappings[0].name);

Completed in 130 milliseconds

123