Interface BindServletRequest
-
- All Known Subinterfaces:
WebdavRequest
- All Known Implementing Classes:
WebdavRequestImpl
public interface BindServletRequestBindServletRequestprovides extension useful for functionality related to BIND specification.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BindInfogetBindInfo()Returns theBindInfopresent with the requestDavResourceLocatorgetHrefLocator(String href)Parses a href and returns the path of the resource.DavResourceLocatorgetMemberLocator(String segment)Returns the path of the member resource of the request resource which is identified by the segment parameter.RebindInfogetRebindInfo()Returns theRebindInfopresent with the requestUnbindInfogetUnbindInfo()Returns theUnbindInfopresent with the request
-
-
-
Method Detail
-
getRebindInfo
RebindInfo getRebindInfo() throws DavException
Returns theRebindInfopresent with the request- Returns:
RebindInfoobject- Throws:
DavException- in case of an invalid or missing request body
-
getUnbindInfo
UnbindInfo getUnbindInfo() throws DavException
Returns theUnbindInfopresent with the request- Returns:
UnbindInfoobject- Throws:
DavException- in case of an invalid or missing request body
-
getBindInfo
BindInfo getBindInfo() throws DavException
Returns theBindInfopresent with the request- Returns:
BindInfoobject- Throws:
DavException- in case of an invalid or missing request body
-
getHrefLocator
DavResourceLocator getHrefLocator(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(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.
-
-