Package com.logicaldoc.webdav.session
Interface DavSession
-
- All Superinterfaces:
org.apache.jackrabbit.webdav.DavSession
- All Known Implementing Classes:
DavSessionImpl
public interface DavSession extends org.apache.jackrabbit.webdav.DavSession
For more informations, please visitDavSession
- Author:
- Sebastian Wenzky
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object
getObject(String key)
Gets an object by passing the appropriated keylong
getTenantId()
The tenant of this sessionvoid
putObject(String key, Object value)
Puts an object to the session map
-
-
-
Method Detail
-
putObject
void putObject(String key, Object value)
Puts an object to the session map- Parameters:
key
- The Keyvalue
- the corresponding object
-
getObject
Object getObject(String key)
Gets an object by passing the appropriated key- Parameters:
key
- The Key- Returns:
- the corresponding object
-
getTenantId
long getTenantId()
The tenant of this session- Returns:
- identifier of the tenant
-
-