Searched refs:propertyValue (Results 1 - 25 of 51) sorted by relevance

123

/forgerock/openam-v13/openam-shared/src/test/java/com/sun/identity/configuration/
H A DSystemProperties.java57 public void initializeProperties(String propertyName, String propertyValue) { argument
58 propertiesMap.put(propertyName, propertyValue);
/forgerock/openidm-v4/openidm-ui/openidm-ui-common/src/main/js/org/forgerock/openidm/ui/common/resource/
H A DResourceCollectionSearchDialog.js37 * propertyValue = either null or the value of the property being set (Can be either an actual JSON object or a raw text representation of a JSON object)
53 this.data.propertyValue = {};
55 if (opts.propertyValue && opts.propertyValue !== "") {
56 this.data.propertyValue = (_.isObject(opts.propertyValue)) ? opts.propertyValue : JSON.parse(opts.propertyValue);
57 this.propertyValuePath = resourceCollectionUtils.getPropertyValuePath(this.data.propertyValue);
127 var value = (!_.isEmpty(this.data.propertyValue))
[all...]
H A DRelationshipArrayView.js377 openResourceCollectionDialog: function (propertyValue) {
381 propertyValue: propertyValue,
385 if (!propertyValue) {
/forgerock/openam-v13/openam-core/src/test/java/org/forgerock/openam/sso/providers/stateless/
H A DStatelessSSOTokenTest.java286 String propertyValue = "testValue";
289 statelessSSOToken.setProperty(propertyName, propertyValue);
292 verify(mockSession).setProperty(propertyName, propertyValue);
299 String propertyValue = "testValue";
300 given(mockSession.getProperty(propertyName)).willReturn(propertyValue);
306 assertThat(result).isEqualTo(propertyValue);
313 String propertyValue = "testValue";
314 given(mockSession.getProperty(propertyName)).willReturn(propertyValue);
320 assertThat(result).isEqualTo(propertyValue);
327 String propertyValue
[all...]
/forgerock/openam/openam-core/src/test/java/org/forgerock/openam/sso/providers/stateless/
H A DStatelessSSOTokenTest.java285 String propertyValue = "testValue";
288 statelessSSOToken.setProperty(propertyName, propertyValue);
291 verify(mockSession).setProperty(propertyName, propertyValue);
298 String propertyValue = "testValue";
299 given(mockSession.getProperty(propertyName)).willReturn(propertyValue);
305 assertThat(result).isEqualTo(propertyValue);
312 String propertyValue = "testValue";
313 given(mockSession.getProperty(propertyName)).willReturn(propertyValue);
319 assertThat(result).isEqualTo(propertyValue);
326 String propertyValue
[all...]
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/configuration/
H A DISystemProperties.java98 * @param propertyValue Value of properties.
100 void initializeProperties(String propertyName, String propertyValue); argument
H A DSystemPropertiesManager.java221 * @param propertyValue Value of properties.
225 String propertyValue
228 systemProperties.initializeProperties(propertyName, propertyValue);
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/configuration/
H A DISystemProperties.java104 * @param propertyValue Value of properties.
106 void initializeProperties(String propertyName, String propertyValue); argument
H A DSystemPropertiesManager.java221 * @param propertyValue Value of properties.
225 String propertyValue
228 systemProperties.initializeProperties(propertyName, propertyValue);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/configuration/
H A DSystemProperties.java122 * @param propertyValue Value of properties.
124 public void initializeProperties(String propertyName, String propertyValue){ argument
126 propertyName, propertyValue);
/forgerock/openam/openam-shared/src/test/java/com/sun/identity/configuration/
H A DSystemProperties.java62 public void initializeProperties(String propertyName, String propertyValue) { argument
63 propertiesMap.put(propertyName, propertyValue);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/configuration/
H A DSystemProperties.java124 * @param propertyValue Value of properties.
126 public void initializeProperties(String propertyName, String propertyValue){ argument
128 propertyName, propertyValue);
/forgerock/openidm-v4/openidm-ui/openidm-ui-common/src/main/js/org/forgerock/openidm/ui/common/util/
H A DResourceCollectionUtils.js63 obj.setupAutocompleteField = function(autocompleteField, prop, opts, resourceCollectionIndex, propertyValue) {
110 if(initialLoad && propertyValue && !_.isEmpty(propertyValue)){
111 this.addOption(propertyValue);
112 this.setValue(propertyValue._id);
233 * @param {Object} propertyValue
236 obj.getPropertyValuePath = function (propertyValue) {
237 var propertyValuePathArr = propertyValue._ref.split("/");
250 * @param {Object} propertyValue
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/common/components/table/
H A DInlineEditRow.js153 return _.every(data, (propertyValue, propertyName) => {
154 return (propertyValue !== undefined && propertyValue.length > 0) ||
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/share/
H A DSessionRequest.java132 private String propertyValue = null; field in class:SessionRequest
375 propertyValue = value;
384 return propertyValue;
563 if (propertyName == null || propertyValue == null) {
570 append(" value=").append(QUOTE).append(XMLUtils.escapeSpecialCharacters(propertyValue)).
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/share/
H A DSessionRequest.java130 private String propertyValue = null; field in class:SessionRequest
371 propertyValue = value;
380 return propertyValue;
550 if (propertyName == null || propertyValue == null) {
557 append(" value=").append(QUOTE).append(XMLUtils.escapeSpecialCharacters(propertyValue)).
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/configuration/
H A DFedLibSystemProperties.java190 * @param propertyValue Value of properties.
192 public void initializeProperties(String propertyName, String propertyValue){ argument
195 newProps.put(propertyName, propertyValue);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/configuration/
H A DFedLibSystemProperties.java194 * @param propertyValue Value of properties.
196 public void initializeProperties(String propertyName, String propertyValue){ argument
199 newProps.put(propertyName, propertyValue);
/forgerock/openidm-v4/openidm-provisioner-openicf/src/main/java/org/forgerock/openidm/provisioner/openicf/commons/
H A DConnectorUtil.java444 Object propertyValue = null;
448 propertyValue = coercedTypeCasting(e.getValue(), targetType);
451 propertyValue = Array.newInstance(targetBaseType, v.size());
453 Array.set(propertyValue, i, coercedTypeCasting(v.get(i), targetBaseType));
456 propertyValue = Array.newInstance(targetBaseType, 1);
457 Array.set(propertyValue, 0, coercedTypeCasting(e.getValue(), targetBaseType));
462 propertyValue = coercedTypeCasting(cryptoService.decrypt(source.get(e.getKey())), targetType);
465 propertyValue = coercedTypeCasting(e.getValue(), targetType);
467 property.setValue(propertyValue);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/
H A DInstallerHelper.java970 final String propertyValue = propertiesSource.getProperty(propertyName);
971 if (propertyValue == null || !("true".equalsIgnoreCase(propertyValue) || "false".equalsIgnoreCase(propertyValue)))
977 destMap.put("overwrite-env-java-home", propertyValue.toLowerCase());
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/common/
H A DSystemConfigurationUtil.java369 * @param propertyValue Value of properties.
373 String propertyValue
376 propertyName, propertyValue);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/common/
H A DSystemConfigurationUtil.java369 * @param propertyValue Value of properties.
373 String propertyValue
376 propertyName, propertyValue);
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/util/
H A DSystemProperties.java518 * @param propertyValue property value.
520 public static void initializeProperties(String propertyName, String propertyValue) { argument
522 newProps.put(propertyName, propertyValue);
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/util/
H A DSystemProperties.java517 * @param propertyValue property value.
519 public static void initializeProperties(String propertyName, String propertyValue) { argument
521 newProps.put(propertyName, propertyValue);
/forgerock/opendj-b2.6/ext/svnkit/
H A Dsvnkit-cli.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...

Completed in 71 milliseconds

123