Class TypeFilter
java.lang.Object
kieker.analysis.analysisComponent.AbstractAnalysisComponent
kieker.analysis.plugin.AbstractPlugin
kieker.analysis.plugin.filter.AbstractFilterPlugin
kieker.analysis.plugin.filter.select.TypeFilter
- All Implemented Interfaces:
IAnalysisComponent,IFilterPlugin,IPlugin
@Deprecated public final class TypeFilter extends AbstractFilterPlugin
Deprecated.
since 1.15.1 old plugin api
This filter has exactly one input port and one output port.
Only the specified objects are forwarded to the output port. All other
objects are forwarded to the output-not port.
- Since:
- 1.5
-
Nested Class Summary
Nested classes/interfaces inherited from interface kieker.analysis.plugin.IPlugin
IPlugin.PluginInputPortReference, IPlugin.STATE -
Field Summary
Fields Modifier and Type Field Description static java.lang.StringCONFIG_PROPERTY_NAME_TYPESDeprecated.The name of the property determining which types will be filtered.static java.lang.StringINPUT_PORT_NAME_EVENTSDeprecated.The name of the input port receiving new events.static java.lang.StringOUTPUT_PORT_NAME_TYPE_MATCHDeprecated.The name of the output port where the incoming matching objects will be sent to.static java.lang.StringOUTPUT_PORT_NAME_TYPE_MISMATCHDeprecated.The name of the output port where the incoming objects will be sent to, which do not match the configured types.Fields inherited from class kieker.analysis.analysisComponent.AbstractAnalysisComponent
CONFIG_NAME, configuration, logger, projectContext, recordsTimeUnitFromProjectContext -
Constructor Summary
Constructors Constructor Description TypeFilter(kieker.common.configuration.Configuration configuration, IProjectContext projectContext)Deprecated.Creates a new instance of this class using the given parameters. -
Method Summary
Modifier and Type Method Description kieker.common.configuration.ConfigurationgetCurrentConfiguration()Deprecated.This method should deliver aConfigurationobject containing the current configuration of this instance.voidinputEvents(java.lang.Object event)Deprecated.This method represents the input port for the incoming objects.Methods inherited from class kieker.analysis.plugin.AbstractPlugin
areAllRepositoryPortsConnected, connect, connect, deliver, getAllDisplayNames, getAllInputPortNames, getAllOutputPortNames, getAllRepositoryPortNames, getConnectedPlugins, getCurrentRepositories, getDefaultConfiguration, getIncomingPlugins, getPluginDescription, getPluginName, getRepository, getState, isConnectionAllowed, notifyNewIncomingConnection, notifyNewOutgoingConnection, shutdown, startMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface kieker.analysis.plugin.IPlugin
connect, getAllDisplayNames, getAllInputPortNames, getAllOutputPortNames, getAllRepositoryPortNames, getConnectedPlugins, getCurrentRepositories, getName, getPluginDescription, getPluginName, getState
-
Field Details
-
INPUT_PORT_NAME_EVENTS
public static final java.lang.String INPUT_PORT_NAME_EVENTSDeprecated.The name of the input port receiving new events.- See Also:
- Constant Field Values
-
OUTPUT_PORT_NAME_TYPE_MATCH
public static final java.lang.String OUTPUT_PORT_NAME_TYPE_MATCHDeprecated.The name of the output port where the incoming matching objects will be sent to.- See Also:
- Constant Field Values
-
OUTPUT_PORT_NAME_TYPE_MISMATCH
public static final java.lang.String OUTPUT_PORT_NAME_TYPE_MISMATCHDeprecated.The name of the output port where the incoming objects will be sent to, which do not match the configured types.- See Also:
- Constant Field Values
-
CONFIG_PROPERTY_NAME_TYPES
public static final java.lang.String CONFIG_PROPERTY_NAME_TYPESDeprecated.The name of the property determining which types will be filtered.- See Also:
- Constant Field Values
-
-
Constructor Details
-
TypeFilter
public TypeFilter(kieker.common.configuration.Configuration configuration, IProjectContext projectContext)Deprecated.Creates a new instance of this class using the given parameters.- Parameters:
configuration- The configuration for this component.projectContext- The project context for this component.
-
-
Method Details
-
getCurrentConfiguration
public final kieker.common.configuration.Configuration getCurrentConfiguration()Deprecated.This method should deliver aConfigurationobject containing the current configuration of this instance. In other words: The constructor should be able to use the given object to initialize a new instance of this class with the same intern properties.- Specified by:
getCurrentConfigurationin interfaceIAnalysisComponent- Specified by:
getCurrentConfigurationin interfaceIPlugin- Specified by:
getCurrentConfigurationin classAbstractAnalysisComponent- Returns:
- A completely filled configuration object.
-
inputEvents
public final void inputEvents(java.lang.Object event)Deprecated.This method represents the input port for the incoming objects.- Parameters:
event- The new incoming object.
-