MCPcopy Index your code
hub / github.com/apache/tomcat / encodeRedirectURL

Method encodeRedirectURL

java/org/apache/catalina/connector/Response.java:1091–1100  ·  view source on GitHub ↗
(String url)

Source from the content-addressed store, hash-verified

1089
1090
1091 @Override
1092 public String encodeRedirectURL(String url) {
1093 if (isEncodeable(toAbsolute(url))) {
1094 Session session = request.getSessionInternal();
1095 if (session != null) {
1096 return toEncoded(url, session.getIdInternal());
1097 }
1098 }
1099 return url;
1100 }
1101
1102
1103 @Override

Callers 1

Calls 5

isEncodeableMethod · 0.95
toAbsoluteMethod · 0.95
toEncodedMethod · 0.95
getIdInternalMethod · 0.95
getSessionInternalMethod · 0.80

Tested by 1