Class OPModeACLEntryFactory
- java.lang.Object
-
- de.desy.mst.libs.framework.mstapp.tabellendaten.entry.OPModeACLEntryFactory
-
- Direct Known Subclasses:
OPModeACLEntryFactory_Default
,OPModeACLEntryFactory_FileSystem
,OPModeACLEntryFactory_Tine
public abstract class OPModeACLEntryFactory extends java.lang.Object
Move OPModeACLEntry creation from OPModeACLEntry itself (via SQL Server) to OPModeACLEntryFactory and subclasses to mitigate migration from SQL Server way to AnLas Tine server.The following explicit ways to create an OPModeACLEntry exist:
- The classical way via: _OPModeACLEntryFactory_SQLSrv
- The new Tine server way via: OPModeACLEntryFactory_Tine
- Via cashing on local file system: ########
- Via default instance: _OPModeACLEntryFactory_NullObject
MstSecurity etc. should use the std way:
- ########
- Author:
- ws
-
-
Constructor Summary
Constructors Constructor Description OPModeACLEntryFactory()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected OPModeACLEntryFactory
__getSQLFactory()
Deprecated.abstract OPModeACLEntry
getOPModeACLEntry(java.lang.String pcUser, java.lang.String pcName, java.lang.String appName)
abstract boolean
usesOldSQLWay()
Deprecated.
-
-
-
Method Detail
-
getOPModeACLEntry
public abstract OPModeACLEntry getOPModeACLEntry(java.lang.String pcUser, java.lang.String pcName, java.lang.String appName)
- Returns:
- null or the corresponding OPModeACLEntry
-
usesOldSQLWay
@Deprecated public abstract boolean usesOldSQLWay()
Deprecated.for testing only
-
__getSQLFactory
@Deprecated protected OPModeACLEntryFactory __getSQLFactory()
Deprecated.for testing only
-
-