Searched defs:input (Results 1 - 25 of 215) sorted by relevance

123456789

/forgerock/opendj-b2.6/src/server/org/opends/server/util/cli/
H A DValidationCallback.java32 * An interface for validating user input.
35 * The type of the decoded input.
40 * Validates and decodes the user-provided input. Implementations
41 * must validate <code>input</code> and return the decoded value
42 * if the input is acceptable. If the input is unacceptable,
48 * @param input
49 * The user input to be validated.
50 * @return Returns the decoded input if the input i
56 validate(ConsoleApplication app, String input) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/util/cli/
H A DValidationCallback.java31 * An interface for validating user input.
34 * The type of the decoded input.
39 * Validates and decodes the user-provided input. Implementations
40 * must validate <code>input</code> and return the decoded value
41 * if the input is acceptable. If the input is unacceptable,
47 * @param input
48 * The user input to be validated.
49 * @return Returns the decoded input if the input i
55 validate(ConsoleApplication app, String input) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/util/cli/
H A DValidationCallback.java32 * An interface for validating user input.
35 * The type of the decoded input.
40 * Validates and decodes the user-provided input. Implementations
41 * must validate <code>input</code> and return the decoded value
42 * if the input is acceptable. If the input is unacceptable,
48 * @param input
49 * The user input to be validated.
50 * @return Returns the decoded input if the input i
56 validate(ConsoleApplication app, String input) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/util/cli/
H A DValidationCallback.java32 * An interface for validating user input.
35 * The type of the decoded input.
40 * Validates and decodes the user-provided input. Implementations
41 * must validate <code>input</code> and return the decoded value
42 * if the input is acceptable. If the input is unacceptable,
48 * @param input
49 * The user input to be validated.
50 * @return Returns the decoded input if the input i
56 validate(ConsoleApplication app, String input) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/util/cli/
H A DValidationCallback.java31 * An interface for validating user input.
34 * The type of the decoded input.
39 * Validates and decodes the user-provided input. Implementations
40 * must validate <code>input</code> and return the decoded value
41 * if the input is acceptable. If the input is unacceptable,
47 * @param input
48 * The user input to be validated.
49 * @return Returns the decoded input if the input i
55 validate(ConsoleApplication app, String input) argument
[all...]
/forgerock/openam-v13/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/
H A DIValueNormalizer.java33 public abstract String getCanonicalForm(String input) throws Exception; argument
H A DPathNormalizer.java35 public String getCanonicalForm(String input) throws Exception { argument
36 String result = input;
37 if (input != null && input.trim().length() > 0) {
38 File file = new File(input);
/forgerock/jee-agents-v3.5/jee-agents-jsr196/src/main/java/com/sun/identity/agents/install/jsr196/
H A DPathNormalizerJSR196.java42 public String getCanonicalForm(String input) throws Exception { argument
43 String result = super.getCanonicalForm(input);
/forgerock/openam-v13/openam-authentication/openam-auth-jdbc/src/main/java/com/sun/identity/authentication/modules/jdbc/
H A DClearTextTransform.java47 * @param input Password before transform
51 public String transform(String input) throws AuthLoginException { argument
52 if (input == null) {
54 "No input to the Clear Text Transform!");
56 return input;
H A DJDBCPasswordSyntaxTransform.java44 * @param input Password before transform
48 String transform(String input) argument
/forgerock/openam/openam-authentication/openam-auth-jdbc/src/main/java/com/sun/identity/authentication/modules/jdbc/
H A DClearTextTransform.java47 * @param input Password before transform
51 public String transform(String input) throws AuthLoginException { argument
52 if (input == null) {
54 "No input to the Clear Text Transform!");
56 return input;
H A DJDBCPasswordSyntaxTransform.java44 * @param input Password before transform
48 String transform(String input) argument
/forgerock/openam/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/
H A DIValueNormalizer.java33 public abstract String getCanonicalForm(String input) throws Exception; argument
H A DPathNormalizer.java35 public String getCanonicalForm(String input) throws Exception { argument
36 String result = input;
37 if (input != null && input.trim().length() > 0) {
38 File file = new File(input);
/forgerock/openam-v13/openam-authentication/openam-auth-oauth2/src/main/java/org/forgerock/openam/authentication/modules/oauth2/
H A DOAuthProxy.java110 html.append(input(PARAM_ACTIVATION, activation));
127 html.append("<input type=\"submit\" value=\"submit\" />\n");
141 private static StringBuilder input(String name, String value) { method in class:OAuthProxy
143 .append("<input type=\"hidden\" name=\"")
/forgerock/openam-v13/openam-examples/openam-example-clientsdk-war/src/main/java/com/sun/identity/samples/clientsdk/
H A DPolicyClientServlet.java123 private String displayXML(String input) { argument
124 StringCharacterIterator iter = new StringCharacterIterator(input);
/forgerock/openam-v13/openam-tools/openam-license-core/src/main/java/org/forgerock/openam/license/
H A DResourceLoaderLicenseLocator.java83 * Basic utility method to fully read a stream into memory. The input stream will be closed afterwards.
85 * @param input the input stream to read.
88 * @throws FileNotFoundException if the input is null.
90 private String readFully(InputStream input) throws IOException { argument
91 if (input == null) {
94 final BufferedReader in = new BufferedReader(new InputStreamReader(input, charset));
111 * Load the given resource as an input stream. Sub-classes should override this method to locate the actual
116 * @return an input stream for the resource or null if not found.
/forgerock/openidm-v4/openidm-audit/src/test/java/org/forgerock/openidm/audit/util/
H A DAuditTestUtils.java40 public static JsonValue getJson(InputStream input) throws AuditException { argument
42 return new JsonValue(mapper.readValue(input, LinkedHashMap.class));
44 throw new AuditException("Unable to retrieve json value from json input stream", e);
/forgerock/openam/openam-authentication/openam-auth-oauth2/src/main/java/org/forgerock/openam/authentication/modules/oauth2/
H A DOAuthProxy.java110 html.append(input(PARAM_ACTIVATION, activation));
127 html.append("<input type=\"submit\" value=\"submit\" />\n");
141 private static StringBuilder input(String name, String value) { method in class:OAuthProxy
143 .append("<input type=\"hidden\" name=\"")
/forgerock/openam/openam-tools/openam-license-core/src/main/java/org/forgerock/openam/license/
H A DResourceLoaderLicenseLocator.java83 * Basic utility method to fully read a stream into memory. The input stream will be closed afterwards.
85 * @param input the input stream to read.
88 * @throws FileNotFoundException if the input is null.
90 private String readFully(InputStream input) throws IOException { argument
91 if (input == null) {
94 final BufferedReader in = new BufferedReader(new InputStreamReader(input, charset));
111 * Load the given resource as an input stream. Sub-classes should override this method to locate the actual
116 * @return an input stream for the resource or null if not found.
/forgerock/opendj2/ext/ant/lib/
H A Dant-apache-regexp.jar ... org.apache.tools.ant.BuildException String input int options private boolean matches (java.lang.String ...
/forgerock/opendj-b2.6/ext/ant/lib/
H A Dant-apache-regexp.jar ... org.apache.tools.ant.BuildException String input int options private boolean matches (java.lang.String ...
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/replication/service/
H A DFakeStressReplicationDomain.java107 protected void importBackend(InputStream input) throws DirectoryException argument
119 ret = input.read(buffer, 0, 10000);
/forgerock/opendj2.6.2/ext/ant/lib/
H A Dant-apache-regexp.jar ... org.apache.tools.ant.BuildException String input int options private boolean matches (java.lang.String ...
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/replication/service/
H A DFakeStressReplicationDomain.java107 protected void importBackend(InputStream input) throws DirectoryException argument
119 ret = input.read(buffer, 0, 10000);

Completed in 498 milliseconds

123456789