Package com.experian.datastudio.sdk.api
Interface CustomTypeMetadata
public interface CustomTypeMetadata
The custom step/parser metadata consists of the name of the custom step/parser, description,
major version, minor version, patch version, author name, and license type.
One of the 3 main builders required for a custom step/parser:
- StepConfigurationBuilder
- StepProcessorBuilder
- CustomTypeMetadataBuilder
- Since:
- 2.0.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionReturns the description of the custom step/parserReturns the name of the custom step/parser authorReturns the license type associated with the custom step/parsergetName()
Returns the name of the custom step/parser.Returns the custom type version of the custom step/parser
-
Method Details
-
getName
String getName()Returns the name of the custom step/parser.- Returns:
- Name of the custom step/parser
-
getDescription
String getDescription()Returns the description of the custom step/parser- Returns:
- Description of the custom step/parser
-
getVersion
CustomTypeVersion getVersion()Returns the custom type version of the custom step/parser- Returns:
CustomTypeVersion
of the custom step/parser
-
getDeveloper
String getDeveloper()Returns the name of the custom step/parser author- Returns:
- Name of the custom step/parser author
-
getLicense
String getLicense()Returns the license type associated with the custom step/parser- Returns:
- License type associated with the custom step/parser
-