Package com.morpheusdata.core
Interface CypherModuleProvider
-
- All Superinterfaces:
PluginProvider
public interface CypherModuleProvider extends PluginProvider
Provides a means to register a Cypher Secret Backend and CypherModule for registry on storing secrets or auto generating secret values that can be encrypted. For more information, see the documentation for cypher-core here
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.morpheusdata.cypher.CypherModule
getCypherModule()
An implementation of a CypherModule for reading and writing data patternsjava.lang.String
getCypherMountPoint()
The mount prefix point for which this module should be registered to cypher's backend.-
Methods inherited from interface com.morpheusdata.core.PluginProvider
getCode, getMorpheus, getName, getPlugin, isPlugin
-
-
-
-
Method Detail
-
getCypherModule
com.morpheusdata.cypher.CypherModule getCypherModule()
An implementation of a CypherModule for reading and writing data patterns- Returns:
- a cypher module
-
getCypherMountPoint
java.lang.String getCypherMountPoint()
The mount prefix point for which this module should be registered to cypher's backend.- Returns:
- a String path prefix
-
-