Searched refs:properties (Results 101 - 125 of 808) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/policy/conditions/
H A DPolicyConditionUpgradeMap.java89 Map<String, Set<String>> properties = condition.getProperties();
91 String propAuthLevel = getValue(properties.get(ConditionConstants.AUTH_LEVEL));
108 Map<String, Set<String>> properties = condition.getProperties();
110 String propAuthLevel = getValue(properties.get(ConditionConstants.AUTH_LEVEL));
128 Map<String, Set<String>> properties = condition.getProperties();
131 getValue(properties.get(ConditionConstants.AUTHENTICATE_TO_SERVICE));
148 Map<String, Set<String>> properties = condition.getProperties();
151 getValue(properties.get(ConditionConstants.AUTHENTICATE_TO_REALM));
168 Map<String, Set<String>> properties = condition.getProperties();
170 Set<String> amIdentityNames = properties
470 getIpConditionIpVersion(Map properties) argument
[all...]
/forgerock/openam/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/policy/conditions/
H A DPolicyConditionUpgradeMap.java90 Map<String, Set<String>> properties = condition.getProperties();
92 String propAuthLevel = getValue(properties.get(ConditionConstants.AUTH_LEVEL));
109 Map<String, Set<String>> properties = condition.getProperties();
111 String propAuthLevel = getValue(properties.get(ConditionConstants.AUTH_LEVEL));
129 Map<String, Set<String>> properties = condition.getProperties();
132 getValue(properties.get(ConditionConstants.AUTHENTICATE_TO_SERVICE));
149 Map<String, Set<String>> properties = condition.getProperties();
152 getValue(properties.get(ConditionConstants.AUTHENTICATE_TO_REALM));
169 Map<String, Set<String>> properties = condition.getProperties();
171 Set<String> amIdentityNames = properties
482 getIpConditionIpVersion(Map properties) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/share/
H A DSessionInfo.java61 private Hashtable<String, String> properties = new Hashtable<String, String>(); field in class:SessionInfo
93 if (properties != null) {
94 Enumeration enumerator = properties.keys();
97 String value = (String) properties.get(name);
283 return properties;
286 public void setProperties(final Hashtable<String, String> properties) { argument
287 this.properties = properties;
305 && !(properties != null ? !properties
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/plugins/
H A DAuthenticateToRealmCondition.java71 private Map properties; field in class:AuthenticateToRealmCondition
136 /** Sets the properties of the condition.
138 * properties.
139 * @param properties the properties of the condition that governs
140 * whether a policy applies. The properties should
147 * properties is not cloned by the method.
149 * @throws PolicyException if properties is <code>null</code>
157 public void setProperties(Map properties) throws PolicyException { argument
158 this.properties
[all...]
H A DAuthenticateToServiceCondition.java70 private Map properties; field in class:AuthenticateToServiceCondition
136 /** Sets the properties of the condition.
138 * properties.
139 * @param properties the properties of the condition that governs
140 * whether a policy applies. The properties should
147 * properties is not cloned by the method.
149 * @throws PolicyException if properties is <code>null</code>
157 public void setProperties(Map properties) throws PolicyException { argument
158 this.properties
[all...]
H A DSessionCondition.java111 private Map properties; field in class:SessionCondition
200 * Sets the properties of the condition.
202 * by these properties.
204 * @param properties the properties of the condition that governs
205 * whether a policy applies. The properties should define
212 * @throws PolicyException if properties is null or does not contain
215 public void setProperties(Map properties) throws PolicyException { argument
216 this.properties = properties;
[all...]
H A DAMIdentityMembershipCondition.java72 private Map properties; field in class:AMIdentityMembershipCondition
143 * Sets the properties of the condition.
145 * properties.
146 * @param properties the properties of the condition that governs
147 * whether a policy applies. The properties should
152 * properties is not cloned by the method.
154 * @throws PolicyException if properties is null or does not contain
158 public void setProperties(Map properties) throws PolicyException { argument
159 this.properties
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/plugins/
H A DAuthenticateToRealmCondition.java71 private Map properties; field in class:AuthenticateToRealmCondition
136 /** Sets the properties of the condition.
138 * properties.
139 * @param properties the properties of the condition that governs
140 * whether a policy applies. The properties should
147 * properties is not cloned by the method.
149 * @throws PolicyException if properties is <code>null</code>
157 public void setProperties(Map properties) throws PolicyException { argument
158 this.properties
[all...]
H A DAuthenticateToServiceCondition.java70 private Map properties; field in class:AuthenticateToServiceCondition
136 /** Sets the properties of the condition.
138 * properties.
139 * @param properties the properties of the condition that governs
140 * whether a policy applies. The properties should
147 * properties is not cloned by the method.
149 * @throws PolicyException if properties is <code>null</code>
157 public void setProperties(Map properties) throws PolicyException { argument
158 this.properties
[all...]
H A DSessionCondition.java109 private Map properties; field in class:SessionCondition
198 * Sets the properties of the condition.
200 * by these properties.
202 * @param properties the properties of the condition that governs
203 * whether a policy applies. The properties should define
210 * @throws PolicyException if properties is null or does not contain
213 public void setProperties(Map properties) throws PolicyException { argument
214 this.properties = properties;
[all...]
H A DAMIdentityMembershipCondition.java72 private Map properties; field in class:AMIdentityMembershipCondition
143 * Sets the properties of the condition.
145 * properties.
146 * @param properties the properties of the condition that governs
147 * whether a policy applies. The properties should
152 * properties is not cloned by the method.
154 * @throws PolicyException if properties is null or does not contain
158 public void setProperties(Map properties) throws PolicyException { argument
159 this.properties
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/log/
H A DLogRecord.java101 * @param properties The Hashtable containing the properties
105 public LogRecord(Level level, String msg, Hashtable properties) { argument
107 String clientDomain = (String)properties.get(LogConstants.DOMAIN);
108 String clientID = (String)properties.get(LogConstants.LOGIN_ID);
109 String ipAddress = (String)properties.get(LogConstants.IP_ADDR);
110 String loginIDSid = (String)properties.get(LogConstants.LOGIN_ID_SID);
111 String moduleName = (String)properties.get(LogConstants.MODULE_NAME);
112 String contextID = (String)properties.get(LogConstants.CONTEXT_ID);
113 String messageID = (String)properties
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/log/
H A DLogRecord.java104 * @param properties The Hashtable containing the properties
108 public LogRecord(Level level, String msg, Hashtable properties) { argument
110 String clientDomain = (String)properties.get(LogConstants.DOMAIN);
111 String clientID = (String)properties.get(LogConstants.LOGIN_ID);
112 String ipAddress = (String)properties.get(LogConstants.IP_ADDR);
113 String loginIDSid = (String)properties.get(LogConstants.LOGIN_ID_SID);
114 String moduleName = (String)properties.get(LogConstants.MODULE_NAME);
115 String contextID = (String)properties.get(LogConstants.CONTEXT_ID);
116 String messageID = (String)properties
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/network/ipv6/
H A DIPv6Condition.java69 private Map properties; field in class:IPv6Condition
140 /** Sets the properties of the condition.
142 * properties.
143 * @param properties the properties of the condition that governs
144 * whether a policy applies. This conditions uses properties
146 * The properties should have at
152 * @throws PolicyException if properties is null or does not contain
163 public void setProperties(Map properties) throws PolicyException { argument
164 this.properties
[all...]
/forgerock/openam-v13/openam-tools/openam-diagnostics/openam-diagnostics-plugins/src/main/resources/
H A DAgentConfiguration.properties25 * $Id: AgentConfiguration.properties,v 1.1 2009/06/20 01:06:18 ak138937 Exp $
34 cannot-load-boot-properties=Cannot load boot properties from file : {0}
35 cannot-load-properties=Cannot load boot properties from file : {0}
42 agt-loading-boot-prop=Loading bootstrap properties from : {0}
47 agt-get-agt-profile=Error in validating properties.
49 agt-invalid-naming-url=Invalid naming URL in bootstrap properties: {0}
52 agt-naming-url-syntax=Validating naming URL syntax in bootstrap properties
59 agt-loading-cfg-prop=Loading agent properties fro
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/managed/
H A DEditManagedView.js114 .without("name", "properties")
123 if(this.data.currentManagedObject.properties) {
124 _.each(this.data.currentManagedObject.properties, function (property) {
134 this.data.availableProperties = _.keys(_.omit(this.data.currentManagedObject.schema.properties,"_id"));
171 "properties": {
207 "properties": {
261 "properties": {
298 "properties": {
315 "properties": {
318 "properties"
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/objectTypes/
H A DObjectTypesDialog.js143 "properties": {
168 "properties": {
176 "properties": {
223 "properties": {
243 var OT_value = _.omit(objectType,["objectName", "properties"]);
245 OT_value.properties = {};
247 _.each(objectType.properties, function(property){
248 OT_value.properties[property.propertyName] = {
257 OT_value.properties[property.propertyName][customProperty.propertyName] = customProperty.values;
271 properties
[all...]
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/network/ipv6/
H A DIPv6Condition.java69 private Map properties; field in class:IPv6Condition
140 /** Sets the properties of the condition.
142 * properties.
143 * @param properties the properties of the condition that governs
144 * whether a policy applies. This conditions uses properties
146 * The properties should have at
152 * @throws PolicyException if properties is null or does not contain
163 public void setProperties(Map properties) throws PolicyException { argument
164 this.properties
[all...]
/forgerock/openidm-v4/openidm-repo-jdbc/src/main/java/org/forgerock/openidm/datasource/jdbc/impl/
H A DNonPoolingDataSourceFactory.java58 final java.util.Properties properties = new java.util.Properties();
60 properties.put("user", config.getUsername());
63 properties.put("password", config.getPassword());
67 properties.put(CONFIG_KERBEROS_PRINCIPAL, config.getKerberosServerPrincipal());
70 properties.put(CONFIG_SECURITY_MECHANISM, config.getSecurityMechanism());
76 return DriverManager.getConnection(config.getJdbcUrl(), properties);
/forgerock/openidm-v4/openidm-ui/openidm-ui-common/src/main/js/org/forgerock/openidm/ui/common/util/
H A DResourceCollectionUtils.js129 return eval("schema." + field.replace("/",".properties."));
159 * @param {Object[]} properties
162 obj.convertRelationshipTypes = function (properties) {
163 _.each(properties, function(prop,key) {
165 prop = obj.convertRelationshipTypes(prop.properties);
169 if(prop.items.type === "relationship" && _.has(properties,key)) {
175 if(prop.type === "relationship" && _.has(properties,key)) {
181 return properties;
186 * once found a string of a list of properties defined in the resourceCollection.query.fields property
192 * @param {Object[]} properties
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/cdm/
H A DClient.java183 Set properties = null;
185 if ((properties = getPropertiesInternal(name)) != null) {
186 Iterator iter = properties.iterator();
194 Set properties = (Set) profileMap.get(attributeName);
195 return (properties);
208 Set properties = getPropertiesInternal(name);
211 if (properties != null) {
212 umSet = Collections.unmodifiableSet(properties);
240 * used by the console plug-in (only) to get the additional properties.
/forgerock/openam-v13/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/
H A DTaskInfo.java40 public TaskInfo(String name, Map properties, String className) { argument
42 setPropertiesMap(properties);
/forgerock/openidm-v4/openidm-ui/openidm-ui-common/src/main/js/org/forgerock/openidm/ui/common/delegates/
H A DPolicyDelegate.js33 properties: _.map(policy.properties, function (prop) {
43 properties: _.filter(policy.properties, function (prop) {
58 * which may depend upon other properties. From the response, we look to see if the
/forgerock/openidm-v4/openidm-zip/src/main/resources/bin/defaults/script/auth/
H A DpopulateAsManagedUser.js2 /*global security, properties, openidm */
10 * global properties - auth module-specific properties from authentication.json for the
43 resource = properties.queryOnResource,
44 propertyMapping = properties.propertyMapping,
/forgerock/openam/openam-core/src/main/java/com/iplanet/services/cdm/
H A DClient.java183 Set properties = null;
185 if ((properties = getPropertiesInternal(name)) != null) {
186 Iterator iter = properties.iterator();
194 Set properties = (Set) profileMap.get(attributeName);
195 return (properties);
208 Set properties = getPropertiesInternal(name);
211 if (properties != null) {
212 umSet = Collections.unmodifiableSet(properties);
240 * used by the console plug-in (only) to get the additional properties.

Completed in 486 milliseconds

1234567891011>>