Searched refs:quote (Results 1 - 25 of 61) sorted by relevance

123

/forgerock/openidm-v4/openidm-repo/src/test/java/org/forgerock/openidm/repo/util/
H A DStringSQLQueryFilterVisitorTest.java44 String quote = valueAssertion instanceof String ? "'" : "";
49 .append(quote)
51 .append(quote);
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/util/
H A DCreateXmlTree.java87 char quote = '\'';
92 while ((i = s.indexOf(quote)) != -1) {
/forgerock/openam/openam-core/src/main/java/com/iplanet/services/util/
H A DCreateXmlTree.java87 char quote = '\'';
92 while ((i = s.indexOf(quote)) != -1) {
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/saml2/impl/
H A DXACMLAuthzDecisionQueryImpl.java322 .append(XACMLSDKUtils.quote(Boolean.toString(inputContextOnly)))
326 .append(XACMLSDKUtils.quote(Boolean.toString(returnContext)))
329 .append(XACMLSDKUtils.quote(requestId))
332 .append(XACMLSDKUtils.quote(version))
335 .append(XACMLSDKUtils.quote(DateUtils.toUTCDateFormat(
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/saml2/impl/
H A DXACMLAuthzDecisionQueryImpl.java322 .append(XACMLSDKUtils.quote(Boolean.toString(inputContextOnly)))
326 .append(XACMLSDKUtils.quote(Boolean.toString(returnContext)))
329 .append(XACMLSDKUtils.quote(requestId))
332 .append(XACMLSDKUtils.quote(version))
335 .append(XACMLSDKUtils.quote(DateUtils.toUTCDateFormat(
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/
H A DBulkOperations.java107 getResourceString("unmatch-quote"),
137 getResourceString("unmatch-quote"), ExitCodes.INCORRECT_OPTION);
/forgerock/openam/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/
H A DBulkOperations.java107 getResourceString("unmatch-quote"),
137 getResourceString("unmatch-quote"), ExitCodes.INCORRECT_OPTION);
/forgerock/openam-v13/openam-oauth/samples/StockService/src/com/sun/samples/
H A DStockResource.java67 @QueryParam("quote") String quote) {
70 Map map = getYahooQuote(quote);
72 map = getCachedQuote(quote);
119 // URL for the stock quote from Yahoo! service
128 // Request for the stock quote
179 * Used as fall-back if quote cannot be
66 getStockResponse( @ueryParam�) String quote) argument
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/log/handlers/
H A DLogReadFileHandler.java695 char quote = '"';
706 if (read_char == quote) {
708 1st character is a quote. i.e. Substrings starts with quote.
709 There could be quote within the desired sub string.
710 If the sub string contains a quote,
711 it will be precceded with another quote. i.e. the
714 The ending position of the substring will be a single quote
715 i.e. a detached quote, no quote t
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/log/handlers/
H A DLogReadFileHandler.java695 char quote = '"';
706 if (read_char == quote) {
708 1st character is a quote. i.e. Substrings starts with quote.
709 There could be quote within the desired sub string.
710 If the sub string contains a quote,
711 it will be precceded with another quote. i.e. the
714 The ending position of the substring will be a single quote
715 i.e. a detached quote, no quote t
[all...]
/forgerock/openam-v13/openam-scripting/src/test/java/org/forgerock/openam/scripting/
H A DAbstractSandboxTests.java54 .withBlackList(Arrays.asList(Pattern.compile(Pattern.quote(ForbiddenFruit.class.getName()))))
/forgerock/openam/openam-scripting/src/test/java/org/forgerock/openam/scripting/
H A DAbstractSandboxTests.java54 .withBlackList(Arrays.asList(Pattern.compile(Pattern.quote(ForbiddenFruit.class.getName()))))
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/impl/
H A DStatusCodeImpl.java213 .append(XACMLSDKUtils.quote(value));
223 .append(XACMLSDKUtils.quote(minorCodeValue))
H A DResultImpl.java245 .append(XACMLSDKUtils.quote(resourceId));
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/policy/impl/
H A DObligationImpl.java306 .append(XACMLSDKUtils.quote(obligationId.toString()));
310 .append(XACMLSDKUtils.quote(fulfillOn));
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/impl/
H A DStatusCodeImpl.java213 .append(XACMLSDKUtils.quote(value));
223 .append(XACMLSDKUtils.quote(minorCodeValue))
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/policy/impl/
H A DObligationImpl.java306 .append(XACMLSDKUtils.quote(obligationId.toString()));
310 .append(XACMLSDKUtils.quote(fulfillOn));
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/common/
H A DXACMLSDKUtils.java176 public static String quote(String s) { method in class:XACMLSDKUtils
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/common/
H A DXACMLSDKUtils.java176 public static String quote(String s) { method in class:XACMLSDKUtils
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/
H A DPolicyUtils.java557 * Surrounds a string on either side with double quote and returns
562 public static String quote(String s) { method in class:PolicyUtils
572 * with double quote and returns the quoted string
576 public static String quote(int i) { method in class:PolicyUtils
577 return quote(Integer.toString(i));
584 * with double quote and returns the quoted string
588 public static String quote(long l) { method in class:PolicyUtils
589 return quote(Long.toString(l));
H A DConditions.java572 sb.append(quote(
598 private String quote(String s) { method in class:Conditions
H A DActionDecision.java231 PolicyUtils.quote(timeToLive)).append(">");
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/
H A DPolicyUtils.java557 * Surrounds a string on either side with double quote and returns
562 public static String quote(String s) { method in class:PolicyUtils
572 * with double quote and returns the quoted string
576 public static String quote(int i) { method in class:PolicyUtils
577 return quote(Integer.toString(i));
584 * with double quote and returns the quoted string
588 public static String quote(long l) { method in class:PolicyUtils
589 return quote(Long.toString(l));
H A DConditions.java572 sb.append(quote(
598 private String quote(String s) { method in class:Conditions
H A DActionDecision.java231 PolicyUtils.quote(timeToLive)).append(">");

Completed in 171 milliseconds

123