Searched defs:properties (Results 1 - 25 of 418) sorted by relevance

1234567891011>>

/forgerock/opendj2/src/server/org/opends/server/admin/
H A DConfigurationClient.java62 PropertyProvider properties(); method in interface:ConfigurationClient
76 * properties which have been left undefined.
H A DManagedObjectDefinitionResource.java42 * A class for retrieving non-internationalized resource properties
45 * Resource properties are not available for the {@link TopCfgDefn}.
51 Properties> properties; field in class:ManagedObjectDefinitionResource
75 this.properties =
110 String path = baseName.replace('.', '/') + ".properties";
121 // Retrieve the properties table associated with a managed object,
126 Properties p = properties.get(d);
131 String path = baseName.replace('.', '/') + ".properties";
150 properties.put(d, p);
/forgerock/opendj-b2.6/src/server/org/opends/server/admin/
H A DConfigurationClient.java63 PropertyProvider properties(); method in interface:ConfigurationClient
77 * properties which have been left undefined.
H A DManagedObjectDefinitionResource.java43 * A class for retrieving non-internationalized resource properties
46 * Resource properties are not available for the {@link TopCfgDefn}.
52 Properties> properties; field in class:ManagedObjectDefinitionResource
76 this.properties =
111 String path = baseName.replace('.', '/') + ".properties";
122 // Retrieve the properties table associated with a managed object,
127 Properties p = properties.get(d);
132 String path = baseName.replace('.', '/') + ".properties";
151 properties.put(d, p);
/forgerock/opendj2.6.2/src/server/org/opends/server/admin/
H A DConfigurationClient.java63 PropertyProvider properties(); method in interface:ConfigurationClient
77 * properties which have been left undefined.
H A DManagedObjectDefinitionResource.java43 * A class for retrieving non-internationalized resource properties
46 * Resource properties are not available for the {@link TopCfgDefn}.
52 Properties> properties; field in class:ManagedObjectDefinitionResource
76 this.properties =
111 String path = baseName.replace('.', '/') + ".properties";
122 // Retrieve the properties table associated with a managed object,
127 Properties p = properties.get(d);
132 String path = baseName.replace('.', '/') + ".properties";
151 properties.put(d, p);
/forgerock/opendj2-hg/src/server/org/opends/server/admin/
H A DConfigurationClient.java62 PropertyProvider properties(); method in interface:ConfigurationClient
76 * properties which have been left undefined.
H A DManagedObjectDefinitionResource.java42 * A class for retrieving non-internationalized resource properties
45 * Resource properties are not available for the {@link TopCfgDefn}.
51 Properties> properties; field in class:ManagedObjectDefinitionResource
75 this.properties =
110 String path = baseName.replace('.', '/') + ".properties";
121 // Retrieve the properties table associated with a managed object,
126 Properties p = properties.get(d);
131 String path = baseName.replace('.', '/') + ".properties";
150 properties.put(d, p);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/admin/
H A DConfigurationClient.java63 PropertyProvider properties(); method in interface:ConfigurationClient
77 * properties which have been left undefined.
H A DManagedObjectDefinitionResource.java43 * A class for retrieving non-internationalized resource properties
46 * Resource properties are not available for the {@link TopCfgDefn}.
52 Properties> properties; field in class:ManagedObjectDefinitionResource
76 this.properties =
111 String path = baseName.replace('.', '/') + ".properties";
122 // Retrieve the properties table associated with a managed object,
127 Properties p = properties.get(d);
132 String path = baseName.replace('.', '/') + ".properties";
151 properties.put(d, p);
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/session/stateless/
H A DStatelessConfig.java26 private final SystemPropertiesWrapper properties; field in class:StatelessConfig
29 public StatelessConfig(SystemPropertiesWrapper properties) { argument
30 this.properties = properties;
38 return properties.getAsInt(StatelessConstants.STATELESS_JWT_CACHE_MAX_SIZE, 10000);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/admin/
H A DConfigurationClient.java62 PropertyProvider properties(); method in interface:ConfigurationClient
76 * properties which have been left undefined.
H A DManagedObjectDefinitionResource.java43 * A class for retrieving non-internationalized resource properties
46 * Resource properties are not available for the {@link TopCfgDefn}.
51 private final Map<AbstractManagedObjectDefinition<?, ?>, Properties> properties = new HashMap<>(); field in class:ManagedObjectDefinitionResource
99 String path = baseName.replace('.', '/') + ".properties";
111 * Retrieve the properties table associated with a managed object,
117 Properties p = properties.get(d);
122 String path = baseName.replace('.', '/') + ".properties";
141 properties.put(d, p);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/spi/
H A DEnvironmentMapper.java49 * @param properties configuration properties
53 Map properties) throws XACMLException;
52 initialize(String pdpEntityId, String pepEntityId, Map properties) argument
H A DResourceMapper.java46 * @param properties configuration properties
50 Map properties)
49 initialize(String pdpEntityId, String pepEntityId, Map properties) argument
H A DResultMapper.java46 * @param properties configuration properties
50 Map properties) throws XACMLException;
49 initialize(String pdpEntityId, String pepEntityId, Map properties) argument
H A DSubjectMapper.java59 * @param properties <code>Map</code> of other properties which can be
66 Map properties) throws XACMLException;
65 initialize(String pdpEntityId, String pepEntityId, Map properties) argument
/forgerock/openam-v13/openam-federation/openam-idpdiscovery/src/main/java/com/sun/identity/saml2/idpdiscovery/
H A DIDPDiscoveryWARConfigurator.java50 * Creates libIDPDiscoveryConfig.properties file
51 * @param configFile Absolute path to the libIDPDiscoveryConfig.properties
53 * @param templateFile Template file for libIDPDiscoveryConfig.properties
54 * @param properties Properties to be swapped in the template
57 String templateFile, Properties properties) throws IOException {
59 for (Iterator i = properties.keySet().iterator(); i.hasNext(); ) {
62 (String)properties.get(tag));
88 * Sets properties from libIDPDiscoveryConfig.properties
89 * @param configFile path to the libIDPDiscoveryConfig.properties fil
56 createIDPDiscoveryConfig(String configFile, String templateFile, Properties properties) argument
[all...]
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-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/
H A DITask.java38 Map properties) throws InstallException;
40 public boolean rollBack(String name, IStateAccess state, Map properties) argument
44 Map properties);
47 Map properties);
37 execute(String name, IStateAccess stateAccess, Map properties) argument
43 getExecutionMessage(IStateAccess stateAccess, Map properties) argument
46 getRollBackMessage(IStateAccess stateAccess, Map properties) argument
H A DIValidation.java35 public ValidationResult validate(String name, String value, Map properties, argument
/forgerock/jee-agents-v3.5/jee-agents-appserver/jee-agents-appserver-common/src/main/java/com/sun/identity/agents/install/appserver/
H A DConfigureLoginConfTaskBase.java51 Map properties) throws InstallException {
56 Map properties) {
65 Map properties) {
74 Map properties) throws InstallException {
50 execute(String name, IStateAccess stateAccess, Map properties) argument
55 getExecutionMessage(IStateAccess stateAccess, Map properties) argument
64 getRollBackMessage(IStateAccess stateAccess, Map properties) argument
73 rollBack(String name, IStateAccess stateAccess, Map properties) argument
H A DUnconfigureLoginConfTaskBase.java51 Map properties) throws InstallException
58 Map properties) {
67 Map properties) {
72 public boolean rollBack(String name, IStateAccess state, Map properties) argument
50 execute(String name, IStateAccess stateAccess, Map properties) argument
57 getExecutionMessage(IStateAccess stateAccess, Map properties) argument
66 getRollBackMessage(IStateAccess stateAccess, Map properties) argument
/forgerock/opendj-v3/opendj-config/src/main/java/org/forgerock/opendj/config/
H A DConfigurationClient.java53 PropertyProvider properties(); method in interface:ConfigurationClient
63 * If this configuration contains some mandatory properties
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/stateless/
H A DStatelessConfig.java26 private final SystemPropertiesWrapper properties; field in class:StatelessConfig
29 public StatelessConfig(SystemPropertiesWrapper properties) { argument
30 this.properties = properties;
38 return properties.getAsInt(StatelessConstants.STATELESS_JWT_CACHE_MAX_SIZE, 10000);

Completed in 418 milliseconds

1234567891011>>