Class OnlyOfficeKeyManager
- java.lang.Object
-
- org.ametys.runtime.plugin.component.AbstractLogEnabled
-
- org.ametys.plugins.workspaces.documents.onlyoffice.OnlyOfficeKeyManager
-
- All Implemented Interfaces:
LogEnabled
,Component
,Serviceable
public class OnlyOfficeKeyManager extends AbstractLogEnabled implements Component, Serviceable
Manager for key/token used in OnlyOffice
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static class
OnlyOfficeKeyManager.KeyInformation
-
Field Summary
Fields Modifier and Type Field Description private Map<String,OnlyOfficeKeyManager.KeyInformation>
_onlyOfficeKeyStorage
static String
ROLE
The Avalon role
-
Constructor Summary
Constructors Constructor Description OnlyOfficeKeyManager()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private String
_resourceIdToTokenKey(String ressourceId)
protected OnlyOfficeKeyManager.KeyInformation
create(String tokenKey)
create methodMap<String,Object>
getKey(String resourceId)
getKey method If a key exist for the resourceId, return it and increment _nbHolders If no key exist for the resourceId, create a new key, put at 1 the _nbHolders and return the keyMap<String,Object>
remove(String resourceId, boolean removeAll)
remove methodvoid
service(ServiceManager manager)
-
Methods inherited from class org.ametys.runtime.plugin.component.AbstractLogEnabled
getLogger, setLogger
-
-
-
-
Field Detail
-
_onlyOfficeKeyStorage
private Map<String,OnlyOfficeKeyManager.KeyInformation> _onlyOfficeKeyStorage
-
-
Constructor Detail
-
OnlyOfficeKeyManager
public OnlyOfficeKeyManager()
-
-
Method Detail
-
service
public void service(ServiceManager manager) throws ServiceException
- Specified by:
service
in interfaceServiceable
- Throws:
ServiceException
-
getKey
public Map<String,Object> getKey(String resourceId)
getKey method If a key exist for the resourceId, return it and increment _nbHolders If no key exist for the resourceId, create a new key, put at 1 the _nbHolders and return the key- Parameters:
resourceId
- id of the resource to look- Returns:
- an onlyOfficeKey
-
create
protected OnlyOfficeKeyManager.KeyInformation create(String tokenKey)
create method- Parameters:
tokenKey
- id of the resource associate to the new key- Returns:
- the new key
-
remove
public Map<String,Object> remove(String resourceId, boolean removeAll)
remove method- Parameters:
resourceId
- id of the resourceremoveAll
- Force to remove all keys- Returns:
- map with error or success
-
_resourceIdToTokenKey
private String _resourceIdToTokenKey(String ressourceId)
-
-