Searched defs:resourceUrl (Results 1 - 8 of 8) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/log/service/
H A DAgentLogParser.java76 String resourceUrl = matcher.group(extractor.resourceIndex);
79 return new LogExtracts(resourceUrl, subjectId, status);
84 private final String resourceUrl; field in class:AgentLogParser.LogExtracts
88 private LogExtracts(String resourceUrl, String subjectId, String statusCode) { argument
89 this.resourceUrl = resourceUrl;
95 return resourceUrl;
H A DLogRecWrite.java226 String resourceUrl = logExtracts.getResourceUrl();
227 int queryStringIndex = resourceUrl.indexOf('?');
228 String queryString = queryStringIndex > -1 ? resourceUrl.substring(queryStringIndex) : "";
229 String path = resourceUrl.replace(queryString, "");
237 .httpRequest(hasSecureScheme(resourceUrl), "UNKNOWN", path, queryParameters,
248 private boolean hasSecureScheme(String resourceUrl) { argument
251 resourceURI = new URI(resourceUrl);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/log/service/
H A DAgentLogParser.java76 String resourceUrl = matcher.group(extractor.resourceIndex);
79 return new LogExtracts(resourceUrl, subjectId, status);
84 private final String resourceUrl; field in class:AgentLogParser.LogExtracts
88 private LogExtracts(String resourceUrl, String subjectId, String statusCode) { argument
89 this.resourceUrl = resourceUrl;
95 return resourceUrl;
H A DLogRecWrite.java226 String resourceUrl = logExtracts.getResourceUrl();
227 int queryStringIndex = resourceUrl.indexOf('?');
228 String queryString = queryStringIndex > -1 ? resourceUrl.substring(queryStringIndex) : "";
229 String path = resourceUrl.replace(queryString, "");
237 .httpRequest(hasSecureScheme(resourceUrl), "UNKNOWN", path, queryParameters,
248 private boolean hasSecureScheme(String resourceUrl) { argument
251 resourceURI = new URI(resourceUrl);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/util/
H A DPolicyDecisionUtils.java101 * @param resourceUrl Resource URL for policy evaluation.
116 public static List doResourceIPEnvAuth(String resourceUrl, String realm, argument
120 if (resourceUrl != null) {
121 decision = getActionDecision(resourceUrl, envParameters);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/util/
H A DPolicyDecisionUtils.java101 * @param resourceUrl Resource URL for policy evaluation.
116 public static List doResourceIPEnvAuth(String resourceUrl, String realm, argument
120 if (resourceUrl != null) {
121 decision = getActionDecision(resourceUrl, envParameters);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/util/
H A DFSServiceUtils.java152 * @param resourceUrl resource URL to redirect to
161 String resourceUrl,
213 if (resourceUrl == null || resourceUrl.length() == 0) {
214 resourceUrl = IDFFMetaUtils.getFirstAttributeValueFromConfig(
217 if(resourceUrl != null && !resourceUrl.equals ("")){
219 .append ("=").append (URLEncDec.encode (resourceUrl));
221 append (URLEncDec.encode (resourceUrl)).append("&");
159 getCommonLoginPageURL( String metaAlias, String resourceUrl, String requestId, HttpServletRequest request, String baseURL) argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/util/
H A DFSServiceUtils.java152 * @param resourceUrl resource URL to redirect to
161 String resourceUrl,
213 if (resourceUrl == null || resourceUrl.length() == 0) {
214 resourceUrl = IDFFMetaUtils.getFirstAttributeValueFromConfig(
217 if(resourceUrl != null && !resourceUrl.equals ("")){
219 .append ("=").append (URLEncDec.encode (resourceUrl));
221 append (URLEncDec.encode (resourceUrl)).append("&");
159 getCommonLoginPageURL( String metaAlias, String resourceUrl, String requestId, HttpServletRequest request, String baseURL) argument

Completed in 44 milliseconds