Package com.tibco.ep.tcs.runtime.config
Class StreamOutputBlockMetaDataConfig
- java.lang.Object
-
- com.tibco.ep.tcs.runtime.config.BaseConfig
-
- com.tibco.ep.tcs.runtime.config.BlockMetaDataConfig
-
- com.tibco.ep.tcs.runtime.config.StreamOutputBlockMetaDataConfig
-
public class StreamOutputBlockMetaDataConfig extends BlockMetaDataConfig
Configuration that describes a TCS stream output block. Hard-wires a configuration JSON schema and does not permit user HOCON configuration.
-
-
Field Summary
-
Fields inherited from class com.tibco.ep.tcs.runtime.config.BlockMetaDataConfig
CONFIGURATION_SCHEMA_PROP
-
-
Constructor Summary
Constructors Constructor Description StreamOutputBlockMetaDataConfig()
Create a new empty stream output block metadata object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
fillMap(Map<String,Object> props)
Add this object's properties to the specified map.StreamOutputBlockMetaDataConfig
setConfigurationSchema(String configurationSchema)
Set the schema that describes and validates configuration for this block, expressed as a fully-qualified class path resource.-
Methods inherited from class com.tibco.ep.tcs.runtime.config.BlockMetaDataConfig
getConfigurationSchema
-
Methods inherited from class com.tibco.ep.tcs.runtime.config.BaseConfig
toHOCON
-
-
-
-
Method Detail
-
setConfigurationSchema
public StreamOutputBlockMetaDataConfig setConfigurationSchema(String configurationSchema)
Set the schema that describes and validates configuration for this block, expressed as a fully-qualified class path resource. No-op; stream output block schemas cannot be changed.
- Overrides:
setConfigurationSchema
in classBlockMetaDataConfig
- Parameters:
configurationSchema
- schema- Returns:
- this object
-
fillMap
protected void fillMap(Map<String,Object> props)
Add this object's properties to the specified map. Override superclass so configuration schema isn't part of the configuration, making the method implementation a no-op.
- Overrides:
fillMap
in classBlockMetaDataConfig
- Parameters:
props
- map to fill
-
-