Class ExternalManagerDefinition
- java.lang.Object
-
- com.orchestranetworks.addon.dama.externalmanagement.ExternalManagerDefinition
-
public abstract class ExternalManagerDefinition extends java.lang.ObjectDefines attributes forExternalManagerimplementations.- Since:
- 1.8.0
-
-
Constructor Summary
Constructors Constructor Description ExternalManagerDefinition()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description booleanallowDelete()Allows delete of digital assets into an externally managed drive.booleanallowDownload()Allows share and download of digital assets into an externally managed drive.abstract booleanallowUpload()Allows upload of digital assets into an externally managed drive.abstract ExternalManagergetExternalManager()Returns theExternalManager.SearchConfiggetSearchConfig()Returns the configuration for the search filter inExternalManager
-
-
-
Method Detail
-
allowUpload
public abstract boolean allowUpload()
Allows upload of digital assets into an externally managed drive.
-
allowDownload
public boolean allowDownload()
Allows share and download of digital assets into an externally managed drive.
-
allowDelete
public boolean allowDelete()
Allows delete of digital assets into an externally managed drive.
-
getSearchConfig
public SearchConfig getSearchConfig()
Returns the configuration for the search filter inExternalManager
-
getExternalManager
public abstract ExternalManager getExternalManager()
Returns theExternalManager.
-
-