Home | History | Annotate | Download | only in security

Lines Matching refs:configuration

33  * Configuration data that specifies the keystores in a keystore domain.
35 * single logical keystore. The configuration data is used during
40 * The following syntax is supported for configuration data:
87 * For example, configuration data for a simple keystore domain
108 private final URI configuration;
115 * @param configuration identifier for the domain configuration data.
125 * been specified by properties in the domain configuration data.
128 * @exception NullPointerException if {@code configuration} or
131 public DomainLoadStoreParameter(URI configuration,
133 if (configuration == null || protectionParams == null) {
136 this.configuration = configuration;
142 * Gets the identifier for the domain configuration data.
144 * @return the identifier for the configuration data
147 return configuration;