Interface BindServletRequest
-
- All Known Subinterfaces:
WebdavRequest
- All Known Implementing Classes:
WebdavRequestImpl
public interface BindServletRequest
BindServletRequest
provides extension useful for functionality related to BIND specification.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BindInfo
getBindInfo()
Returns theBindInfo
present with the requestDavResourceLocator
getHrefLocator(java.lang.String href)
Parses a href and returns the path of the resource.DavResourceLocator
getMemberLocator(java.lang.String segment)
Returns the path of the member resource of the request resource which is identified by the segment parameter.RebindInfo
getRebindInfo()
Returns theRebindInfo
present with the requestUnbindInfo
getUnbindInfo()
Returns theUnbindInfo
present with the request
-
-
-
Method Detail
-
getRebindInfo
RebindInfo getRebindInfo() throws DavException
Returns theRebindInfo
present with the request- Returns:
RebindInfo
object- Throws:
DavException
- in case of an invalid or missing request body
-
getUnbindInfo
UnbindInfo getUnbindInfo() throws DavException
Returns theUnbindInfo
present with the request- Returns:
UnbindInfo
object- Throws:
DavException
- in case of an invalid or missing request body
-
getBindInfo
BindInfo getBindInfo() throws DavException
Returns theBindInfo
present with the request- Returns:
BindInfo
object- Throws:
DavException
- in case of an invalid or missing request body
-
getHrefLocator
DavResourceLocator getHrefLocator(java.lang.String href) throws DavException
Parses a href and returns the path of the resource.- Returns:
- path of the resource identified by the href.
- Throws:
DavException
-
getMemberLocator
DavResourceLocator getMemberLocator(java.lang.String segment)
Returns the path of the member resource of the request resource which is identified by the segment parameter.- Returns:
- path of internal member resource.
-
-