/forgerock/openam-v13/openam-cli/openam-cli-definitions/src/main/java/com/sun/identity/cli/annotation/ |
H A D | ResourceStrings.java | 40 String[] string(); method in interface:ResourceStrings
|
/forgerock/openam/openam-cli/openam-cli-definitions/src/main/java/com/sun/identity/cli/annotation/ |
H A D | ResourceStrings.java | 40 String[] string(); method in interface:ResourceStrings
|
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/util/ |
H A D | Hash.java | 49 * Generates a SHA1 digest of the string and returns BASE64 encoded digest. 51 * @param string 52 * a string to be hashed return a BASE64 encoded hashed String or 55 public static String hash(String string) { argument 58 sha1.update(string.getBytes("UTF-8")); 70 * Hash of the provided string or string read from a file specified with a
|
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/common/ |
H A D | DisplayUtils.java | 36 * Returns true if the given pattern is contained in the string. 38 * @param string 42 * @return true if string matches <code>filter</code> 44 public static boolean wildcardMatch(String string, String pattern) { argument 45 string = string.toLowerCase(); 48 if (pattern.equals("*") || pattern.equals(string)) { 58 if (!string.startsWith(patternSubStr, 0)) { 74 if (string.indexOf(patternSubStr, stringIndex) == -1) { 83 if (string [all...] |
/forgerock/web-agents-v4/pcre/ |
H A D | pcre_valid_utf8.c | 53 * Validate a UTF-8 string * 57 check that a supposed UTF-8 string is actually valid. The early check means 58 that subsequent code can assume it is dealing with a valid string. The check 60 invalid string are then undefined. 74 PCRE_UTF8_ERR1 Missing 1 byte at the end of the string 75 PCRE_UTF8_ERR2 Missing 2 bytes at the end of the string 76 PCRE_UTF8_ERR3 Missing 3 bytes at the end of the string 77 PCRE_UTF8_ERR4 Missing 4 bytes at the end of the string 78 PCRE_UTF8_ERR5 Missing 5 bytes at the end of the string 98 string point 107 valid_utf(PCRE_PUCHAR string, int length, int *erroroffset) argument [all...] |
/forgerock/openam/openam-core/src/main/java/com/iplanet/services/util/ |
H A D | Hash.java | 49 * Generates a SHA1 digest of the string and returns BASE64 encoded digest. 51 * @param string 52 * a string to be hashed return a BASE64 encoded hashed String or 55 public static String hash(String string) { argument 58 sha1.update(string.getBytes("UTF-8")); 70 * Hash of the provided string or string read from a file specified with a
|
/forgerock/openam/openam-core/src/main/java/com/sun/identity/common/ |
H A D | DisplayUtils.java | 36 * Returns true if the given pattern is contained in the string. 38 * @param string 42 * @return true if string matches <code>filter</code> 44 public static boolean wildcardMatch(String string, String pattern) { argument 45 string = string.toLowerCase(); 48 if (pattern.equals("*") || pattern.equals(string)) { 58 if (!string.startsWith(patternSubStr, 0)) { 74 if (string.indexOf(patternSubStr, stringIndex) == -1) { 83 if (string [all...] |
/forgerock/opendj2/ext/ant/bin/ |
H A D | runant.py | 34 import os, os.path, string, sys
namespace 95 CLASSPATH, string.join(sys.argv[1:], ' '))
|
/forgerock/opendj-b2.6/ext/ant/bin/ |
H A D | runant.py | 34 import os, os.path, string, sys
namespace 95 CLASSPATH, string.join(sys.argv[1:], ' '))
|
/forgerock/opendj2.6.2/ext/ant/bin/ |
H A D | runant.py | 34 import os, os.path, string, sys
namespace 95 CLASSPATH, string.join(sys.argv[1:], ' '))
|
/forgerock/opendj2-hg/ext/ant/bin/ |
H A D | runant.py | 34 import os, os.path, string, sys
namespace 95 CLASSPATH, string.join(sys.argv[1:], ' '))
|
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/encode/ |
H A D | Hash.java | 43 * Generates a SHA1 digest of the string and returns BASE64 encoded digest. 45 * @param string 46 * a string to be hashed return a BASE64 encoded hashed String or 49 public static String hash(String string) { argument 52 sha1.update(string.getBytes("UTF-8")); 64 * Hash of the provided string or string read from a file specified with a
|
/forgerock/opendj-v3/opendj-server-legacy/ext/ant/bin/ |
H A D | runant.py | 34 import os, os.path, string, sys
namespace 95 CLASSPATH, string.join(sys.argv[1:], ' '))
|
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/encode/ |
H A D | Hash.java | 43 * Generates a SHA1 digest of the string and returns BASE64 encoded digest. 45 * @param string 46 * a string to be hashed return a BASE64 encoded hashed String or 49 public static String hash(String string) { argument 52 sha1.update(string.getBytes("UTF-8")); 64 * Hash of the provided string or string read from a file specified with a
|
/forgerock/openidm-v4/openidm-workflow-activiti/src/main/java/org/forgerock/openidm/workflow/activiti/impl/ |
H A D | JsonGroup.java | 58 public void setType(String string) { argument 59 put("type", string);
|
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/ |
H A D | StatelessRefreshToken.java | 41 * @param jwtString The JWT string. 120 * @param string The String. 123 protected String getResourceString(final String string) { argument 124 return string;
|
H A D | OAuth2Utils.java | 90 * Determines if a string is empty. Empty is defined as null or empty 91 * string. 103 * string to evaluate as empty. 104 * @return true if the string is empty else false. 144 public Set<String> split(String string, String delimiter) { argument 145 if (isNotBlank(string)) { 147 new StringTokenizer(string, null != delimiter ? delimiter : SCOPE_DELIMITER);
|
/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/ |
H A D | Utils.java | 123 * Splits the string on ' ' character and returns a {@code Set<String>} of the contents. 125 * @param string The string. 128 public static Set<String> stringToSet(String string) { argument 129 if (string == null || string.isEmpty()) { 132 return new HashSet<String>(Arrays.asList(string.split(" ")));
|
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/entitlement/ |
H A D | CreateXACML.java | 230 private void writeToOutputFile(String string) throws CLIException { argument 247 pwout.write(string);
|
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/ |
H A D | Utils.java | 123 * Splits the string on ' ' character and returns a {@code Set<String>} of the contents. 125 * @param string The string. 128 public static Set<String> stringToSet(String string) { argument 129 if (string == null || string.isEmpty()) { 132 return new HashSet<String>(Arrays.asList(string.split(" ")));
|
/forgerock/openam/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/entitlement/ |
H A D | CreateXACML.java | 225 private void writeToOutputFile(String string) throws CLIException { argument 242 pwout.write(string);
|
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/service/access/ |
H A D | SessionQueryManager.java | 159 * Returns true if the given pattern is contained in the string. 161 * @param string to examine 163 * @return true if string matches <code>filter</code> 165 private boolean matchFilter(String string, String pattern) { argument 166 if (pattern == null || pattern.equals("*") || pattern.equals(string)) { 176 if (!string.startsWith(patternSubStr, 0)) { 192 if (string.indexOf(patternSubStr, stringIndex) == -1) { 201 if (string.endsWith(sub)) {
|
/forgerock/openam-v13/openam-oauth2-common/oauth2-restlet/src/main/java/org/forgerock/openam/oauth2/ |
H A D | OAuth2Utils.java | 86 * Determines if a string is empty. Empty is defined as null or empty 87 * string. 99 * string to evaluate as empty. 100 * @return true if the string is empty else false. 140 public Set<String> split(String string, String delimiter) { argument 141 if (isNotBlank(string)) { 143 new StringTokenizer(string, null != delimiter ? delimiter : SCOPE_DELIMITER);
|
/forgerock/openam-v13/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/ |
H A D | FileSystemValidator.java | 238 private boolean isStringValid(String string) { argument 241 if ((string == null) || (string.trim().length() == 0)) {
|
/forgerock/web-agents-v4/tests/ |
H A D | test_setup_requests.c | 18 #include <string.h> 38 * Compare only the prefix against the string. 41 int compare_prefix(char* prefix, char* string) { argument 42 return strncmp(prefix, string, strlen(prefix));
|