Package de.xima.fc.interfaces.http
Interface IUrlResource
- 
- All Known Implementing Classes:
 UrlResource
- Functional Interface:
 - This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
 
@FunctionalInterface public interface IUrlResource
Common interface representing a URL resource which may be used for e.g. redirection.- Since:
 - 8.0.1
 - Author:
 - XIMA MEDIA GmbH
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetPath(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)Returns the final path to the URL resource including thecontext pathand additional parameters. 
 - 
 
- 
- 
Method Detail
- 
getPath
String getPath(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
Returns the final path to the URL resource including thecontext pathand additional parameters.- Parameters:
 request- the involved request.response- the involved response.- Returns:
 - the final path to the URL resource.
 
 
 - 
 
 -