Searched refs:properties (Results 26 - 50 of 808) sorted by relevance

1234567891011>>

/forgerock/openidm-v4/custom-scripted-connector-bundler/src/main/java/org/forgerock/openidm/tools/scriptedbundler/
H A DCustomObjectType.java47 * "properties" : [
57 * "properties" : [{
85 // A list of properties for this object type
86 private List<CustomObjectTypeProperty> properties = new ArrayList<CustomObjectTypeProperty>(); field in class:CustomObjectType
178 * Return the properties of this object type.
183 return flagLast(properties);
187 * Set the properties of this object type.
189 * @param properties
191 public void setProperties(List<CustomObjectTypeProperty> properties) { argument
192 this.properties
[all...]
H A DCustomConfiguration.java46 private List<CustomProperty> properties = new ArrayList<CustomProperty>(); field in class:CustomConfiguration
169 * Return the properties for this object.
178 * Set the properties for this object.
188 * Return whether this object has properties. This is a template function.
198 * Return the properties for this object.
203 return flagLast(properties);
207 * Set the properties for this object.
209 * @param properties
211 public void setProperties(List<CustomProperty> properties) { argument
212 this.properties
[all...]
/forgerock/openam-v13/openam-distribution/src/main/amserver/samples/server/source/com/sun/identity/samples/policy/
H A DSampleResponseProvider.java78 private Map properties; field in class:SampleResponseProvider
176 /** Sets the properties of the responseProvider plugin.
184 * @param properties the properties of the responseProvider
185 * Keys of the properties have to be String.
191 public void setProperties(Map properties) throws PolicyException { argument
192 if ( (properties == null) || ( properties.isEmpty()) ) {
195 this.properties = properties;
[all...]
H A DSampleCondition.java61 private Map properties; field in class:SampleCondition
127 /** Sets the properties of the condition.
128 * Evaluation of ConditionDecision is influenced by these properties.
129 * @param properties the properties of the condition that governs
130 * whether a policy applies. The properties should
134 * properties is not cloned by the method.
136 * @throws PolicyException if properties is null or does not contain
142 public void setProperties(Map properties) throws PolicyException { argument
143 this.properties
[all...]
/forgerock/openam/openam-distribution/src/main/amserver/samples/server/source/com/sun/identity/samples/policy/
H A DSampleResponseProvider.java78 private Map properties; field in class:SampleResponseProvider
176 /** Sets the properties of the responseProvider plugin.
184 * @param properties the properties of the responseProvider
185 * Keys of the properties have to be String.
191 public void setProperties(Map properties) throws PolicyException { argument
192 if ( (properties == null) || ( properties.isEmpty()) ) {
195 this.properties = properties;
[all...]
H A DSampleCondition.java61 private Map properties; field in class:SampleCondition
127 /** Sets the properties of the condition.
128 * Evaluation of ConditionDecision is influenced by these properties.
129 * @param properties the properties of the condition that governs
130 * whether a policy applies. The properties should
134 * properties is not cloned by the method.
136 * @throws PolicyException if properties is null or does not contain
142 public void setProperties(Map properties) throws PolicyException { argument
143 this.properties
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/managed/
H A DAbstractManagedView.js108 properties = [],
112 _.each(this.data.currentManagedObject.schema.properties, function (val, key) {
123 properties.push(property);
127 this.data.currentManagedObject.properties = properties;
129 _.each(this.data.currentManagedObject.schema.properties, function (val, key) {
134 this.data.currentManagedObject.schema.properties = schemaProperties;
140 _.each(this.data.currentManagedObject.properties, _.bind(function (property) {
142 this.data.currentManagedObject.schema.properties[property.name].isVirtual = true;
144 _.extend(this.data.currentManagedObject.schema.properties[propert
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/plugins/
H A DAuthRoleCondition.java68 private Map properties; field in class:AuthRoleCondition
139 * Sets the properties of the condition.
141 * properties.
142 * @param properties the properties of the condition that governs
143 * whether a policy applies. The properties should
147 * properties is not cloned by the method.
149 * @throws PolicyException if properties is null or does not contain
153 public void setProperties(Map properties) throws PolicyException { argument
154 this.properties
[all...]
H A DSessionPropertyCondition.java58 * This condition checks whether session properties contain at least
71 private Map properties; field in class:SessionPropertyCondition
145 * Sets the properties of the condition.
147 * properties.
148 * @param properties the properties of the condition that governs
149 * whether a policy applies. The keys in properties should
151 * key should be a Set of String(s). Please note that properties
154 * @throws PolicyException if properties is null or empty
157 public void setProperties(Map properties) throw argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/plugins/
H A DAuthRoleCondition.java68 private Map properties; field in class:AuthRoleCondition
139 * Sets the properties of the condition.
141 * properties.
142 * @param properties the properties of the condition that governs
143 * whether a policy applies. The properties should
147 * properties is not cloned by the method.
149 * @throws PolicyException if properties is null or does not contain
153 public void setProperties(Map properties) throws PolicyException { argument
154 this.properties
[all...]
H A DSessionPropertyCondition.java58 * This condition checks whether session properties contain at least
71 private Map properties; field in class:SessionPropertyCondition
145 * Sets the properties of the condition.
147 * properties.
148 * @param properties the properties of the condition that governs
149 * whether a policy applies. The keys in properties should
151 * key should be a Set of String(s). Please note that properties
154 * @throws PolicyException if properties is null or empty
157 public void setProperties(Map properties) throw argument
[all...]
/forgerock/openam-v13/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/
H A DPropertyStore.java41 * properties to/from a file.
55 Debug.log("PropertyStore : Loading the translation properties ..");
60 Debug.log("PropertyStore : Error loading the properties", e);
75 Debug.log("PropertyStore: Saving the properties into file.");
81 Debug.log("PropertyStore : Error saving the properties ", e);
99 return properties;
102 protected void setProperties(Properties properties) { argument
103 this.properties = properties;
110 protected Properties properties; field in class:PropertyStore
[all...]
H A DDeleteLayoutTask.java42 Map properties) throws InstallException {
53 Map properties) {
61 Map properties) {
66 public boolean rollBack(String name, IStateAccess state, Map properties) argument
41 execute(String name, IStateAccess stateAccess, Map properties) argument
52 getExecutionMessage(IStateAccess stateAccess, Map properties) argument
60 getRollBackMessage(IStateAccess stateAccess, Map properties) argument
/forgerock/jee-agents-v3.5/jee-agents-jboss/jee-agents-jboss-common/src/main/java/com/sun/identity/agents/tools/jboss/
H A DUnconfigureAgentAppTask.java47 public boolean execute(String name, IStateAccess stateAccess, Map properties) throws InstallException { argument
51 public LocalizedMessage getExecutionMessage(IStateAccess stateAccess, Map properties) { argument
54 (String) properties.get(STR_JBOSS_I18N_FILE), args);
59 public LocalizedMessage getRollBackMessage(IStateAccess stateAccess, Map properties) { argument
64 public boolean rollBack(String name, IStateAccess state, Map properties) throws InstallException { argument
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/conditions/environment/
H A DSessionPropertyCondition.java48 * properties of a session match the configured values.
61 private Map<String, Set<String>> properties = new HashMap<String, Set<String>>(); field in class:SessionPropertyCondition
90 JSONObject props = jo.getJSONObject("properties");
99 properties.put(key, s);
133 if ((properties != null) && !properties.isEmpty()) {
134 Set<String> names = properties.keySet();
137 Set<String> values = properties.get(name);
223 for (Map.Entry<String, Set<String>> prop : properties.entrySet()) {
230 jo.put("properties", prop
261 setProperties(Map<String, Set<String>> properties) argument
[all...]
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/conditions/environment/
H A DSessionPropertyCondition.java48 * properties of a session match the configured values.
61 private Map<String, Set<String>> properties = new HashMap<String, Set<String>>(); field in class:SessionPropertyCondition
90 JSONObject props = jo.getJSONObject("properties");
99 properties.put(key, s);
133 if ((properties != null) && !properties.isEmpty()) {
134 Set<String> names = properties.keySet();
137 Set<String> values = properties.get(name);
223 for (Map.Entry<String, Set<String>> prop : properties.entrySet()) {
230 jo.put("properties", prop
261 setProperties(Map<String, Set<String>> properties) argument
[all...]
/forgerock/openam/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/
H A DPropertyStore.java41 * properties to/from a file.
55 Debug.log("PropertyStore : Loading the translation properties ..");
60 Debug.log("PropertyStore : Error loading the properties", e);
75 Debug.log("PropertyStore: Saving the properties into file.");
81 Debug.log("PropertyStore : Error saving the properties ", e);
99 return properties;
102 protected void setProperties(Properties properties) { argument
103 this.properties = properties;
110 protected Properties properties; field in class:PropertyStore
[all...]
/forgerock/openam-v13/openam-federation/openam-idpdiscovery/src/main/java/com/sun/identity/saml2/idpdiscovery/
H A DSystemProperties.java41 * to all related system properties.
43 * The class tries to retrieve IDP discovery related properties in services,
44 * if not exists, find a file <code>IDPDiscoveryConfig.properties</code> in
52 private static Properties properties = new Properties(); field in class:SystemProperties
55 * Initializes the properties.
56 * @param fileName name of file containing the properties to be initialized.
64 properties.load(fis);
87 return (String) properties.get(key);
/forgerock/openam-v13/openam-core/src/test/java/com/sun/identity/policy/plugins/
H A DAuthenticateToRealmConditionTest.java38 Map<String, Set<String>> properties = new HashMap<String, Set<String>>(1);
41 properties.put(AuthenticateToRealmCondition.AUTHENTICATE_TO_REALM, realm);
44 condition.setProperties(properties);
61 Map<String, Set<String>> properties = new HashMap<String, Set<String>>(1);
64 properties.put(AuthenticateToRealmCondition.AUTHENTICATE_TO_REALM, realm);
67 condition.setProperties(properties);
82 Map<String, Set<String>> properties = new HashMap<String, Set<String>>(1);
85 properties.put(AuthenticateToRealmCondition.AUTHENTICATE_TO_REALM, realm);
88 condition.setProperties(properties);
103 Map<String, Set<String>> properties
[all...]
/forgerock/openam/openam-core/src/test/java/com/sun/identity/policy/plugins/
H A DAuthenticateToRealmConditionTest.java38 Map<String, Set<String>> properties = new HashMap<String, Set<String>>(1);
41 properties.put(AuthenticateToRealmCondition.AUTHENTICATE_TO_REALM, realm);
44 condition.setProperties(properties);
61 Map<String, Set<String>> properties = new HashMap<String, Set<String>>(1);
64 properties.put(AuthenticateToRealmCondition.AUTHENTICATE_TO_REALM, realm);
67 condition.setProperties(properties);
82 Map<String, Set<String>> properties = new HashMap<String, Set<String>>(1);
85 properties.put(AuthenticateToRealmCondition.AUTHENTICATE_TO_REALM, realm);
88 condition.setProperties(properties);
103 Map<String, Set<String>> properties
[all...]
/forgerock/openam/openam-federation/openam-idpdiscovery/src/main/java/com/sun/identity/saml2/idpdiscovery/
H A DSystemProperties.java41 * to all related system properties.
43 * The class tries to retrieve IDP discovery related properties in services,
44 * if not exists, find a file <code>IDPDiscoveryConfig.properties</code> in
52 private static Properties properties = new Properties(); field in class:SystemProperties
55 * Initializes the properties.
56 * @param fileName name of file containing the properties to be initialized.
64 properties.load(fis);
87 return (String) properties.get(key);
/forgerock/openam/openam-test-utils/src/main/java/org/forgerock/openam/test/apidescriptor/
H A DApiAssertions.java60 String resourceBundleName = "/" + resource.getSchemeSpecificPart() + ".properties";
62 Properties properties = getResourceBundle(resourceBundleName, annotatedClass);
63 Assertions.assertThat(properties)
70 Properties properties;
72 properties = new Properties();
74 properties.load(annotatedClass.getResourceAsStream(resourceBundleName));
75 resourceBundleCache.put(resourceBundleName, properties);
/forgerock/openam-v13/openam-distribution/src/main/amserver/diagnostics/services/webcontainer/config/
H A DIBMWebSphere.properties25 * $Id: IBMWebSphere.properties,v 1.1 2008/11/22 02:41:24 ak138937 Exp $
29 dir.policy=properties
/forgerock/openam-v13/openam-distribution/src/main/amserver/samples/source/com/sun/identity/samples/setup/
H A DMain.java52 private Map properties = new HashMap(); field in class:Main
56 "resources/AMClient.properties";
58 "war/WEB-INF/classes/AMConfig.properties";
60 "classes/AMConfig.properties";
120 properties.put(key, value);
125 (String)properties.get(TAG_CLIENT_ENC_KEY));
127 (String)properties.get(TAG_CLIENT_ENC_KEY));
150 properties.put(TAG_NOTIFICATION_URL,
168 defaultValue = properties.get(TAG_SERVER_PROTOCOL) + "://" +
169 properties
[all...]
/forgerock/openam/openam-distribution/src/main/amserver/samples/source/com/sun/identity/samples/setup/
H A DMain.java52 private Map properties = new HashMap(); field in class:Main
56 "resources/AMClient.properties";
58 "war/WEB-INF/classes/AMConfig.properties";
60 "classes/AMConfig.properties";
120 properties.put(key, value);
125 (String)properties.get(TAG_CLIENT_ENC_KEY));
127 (String)properties.get(TAG_CLIENT_ENC_KEY));
150 properties.put(TAG_NOTIFICATION_URL,
168 defaultValue = properties.get(TAG_SERVER_PROTOCOL) + "://" +
169 properties
[all...]

Completed in 122 milliseconds

1234567891011>>