Interface JCoConnectionParameter
-
- All Known Implementing Classes:
JCoConnectionParameterImpl
public interface JCoConnectionParameterJCo Connection parameter interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetCacheType()Gets the Cache Type.JCoConnectionEventListenergetEventListener()Gets the Event Listener class name.java.lang.StringgetFunctionModule()Gets the Function Module Name.java.lang.StringgetFunctionModuleToBeReplaced()Returns the function module which should be replaced.booleangetTraceAfter()Gets the Trace After.booleangetTraceBefore()Gets the Trace Before.java.lang.StringgetTraceExcludeExportParameters()Used as parameter to configure which import parameter should not be trace in function module trace.java.util.List<java.lang.String>getTraceExcludeExportParametersList()Used as parameter to configure which import parameter should not be trace in function module trace.java.lang.StringgetTraceExcludeImportParameters()Used as parameter to configure which import parameter should not be trace in function module trace.java.util.List<java.lang.String>getTraceExcludeImportParametersList()Used as parameter to configure which import parameter should not be trace in function module trace.java.lang.StringgetTraceExcludeTableParameters()Used as parameter to configure which import parameter should not be trace in function module trace.java.util.List<java.lang.String>getTraceExcludeTableParametersList()Used as parameter to configure which import parameter should not be trace in function module trace.
-
-
-
Method Detail
-
getFunctionModule
java.lang.String getFunctionModule()
Gets the Function Module Name.- Returns:
- Function Module Name
-
getCacheType
java.lang.String getCacheType()
Gets the Cache Type.- Returns:
- Cache Type
-
getTraceBefore
boolean getTraceBefore()
Gets the Trace Before.- Returns:
- Trace Before
-
getTraceAfter
boolean getTraceAfter()
Gets the Trace After.- Returns:
- Trace After
-
getEventListener
JCoConnectionEventListener getEventListener()
Gets the Event Listener class name.- Returns:
- Event Listener class name
-
getFunctionModuleToBeReplaced
java.lang.String getFunctionModuleToBeReplaced()
Returns the function module which should be replaced.- Returns:
- Replaced function module name
-
getTraceExcludeImportParameters
java.lang.String getTraceExcludeImportParameters()
Used as parameter to configure which import parameter should not be trace in function module trace.- Returns:
- excluded import parameters
-
getTraceExcludeExportParameters
java.lang.String getTraceExcludeExportParameters()
Used as parameter to configure which import parameter should not be trace in function module trace.- Returns:
- excluded export parameters
-
getTraceExcludeTableParameters
java.lang.String getTraceExcludeTableParameters()
Used as parameter to configure which import parameter should not be trace in function module trace.- Returns:
- excluded table parameters
-
getTraceExcludeImportParametersList
java.util.List<java.lang.String> getTraceExcludeImportParametersList()
Used as parameter to configure which import parameter should not be trace in function module trace.- Returns:
- excluded import parameters as unmodifiable list
-
getTraceExcludeExportParametersList
java.util.List<java.lang.String> getTraceExcludeExportParametersList()
Used as parameter to configure which import parameter should not be trace in function module trace.- Returns:
- excluded export parameters as unmodifiable list
-
getTraceExcludeTableParametersList
java.util.List<java.lang.String> getTraceExcludeTableParametersList()
Used as parameter to configure which import parameter should not be trace in function module trace.- Returns:
- excluded table parameters as unmodifiable list
-
-