/forgerock/opendj-b2.6/src/server/org/opends/server/util/cli/ |
H A D | ValidationCallback.java | 32 * 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 D | ValidationCallback.java | 31 * 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 D | ValidationCallback.java | 32 * 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 D | ValidationCallback.java | 32 * 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 D | ValidationCallback.java | 31 * 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 D | IValueNormalizer.java | 33 public abstract String getCanonicalForm(String input) throws Exception; argument
|
H A D | PathNormalizer.java | 35 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 D | PathNormalizerJSR196.java | 42 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 D | ClearTextTransform.java | 47 * @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 D | JDBCPasswordSyntaxTransform.java | 44 * @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 D | ClearTextTransform.java | 47 * @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 D | JDBCPasswordSyntaxTransform.java | 44 * @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 D | IValueNormalizer.java | 33 public abstract String getCanonicalForm(String input) throws Exception; argument
|
H A D | PathNormalizer.java | 35 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 D | OAuthProxy.java | 110 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 D | PolicyClientServlet.java | 123 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 D | ResourceLoaderLicenseLocator.java | 83 * 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 D | AuditTestUtils.java | 40 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 D | OAuthProxy.java | 110 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 D | ResourceLoaderLicenseLocator.java | 83 * 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 D | ant-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 D | ant-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 D | FakeStressReplicationDomain.java | 107 protected void importBackend(InputStream input) throws DirectoryException argument 119 ret = input.read(buffer, 0, 10000);
|
/forgerock/opendj2.6.2/ext/ant/lib/ |
H A D | ant-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 D | FakeStressReplicationDomain.java | 107 protected void importBackend(InputStream input) throws DirectoryException argument 119 ret = input.read(buffer, 0, 10000);
|