Class YamlTypedData
- java.lang.Object
-
- de.iip_ecosphere.platform.services.spring.yaml.YamlTypedData
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Stringdescriptionprivate java.lang.Stringnameprivate java.lang.Stringtype
-
Constructor Summary
Constructors Constructor Description YamlTypedData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()Returns the description of the data.java.lang.StringgetName()Returns the name of the data.java.lang.StringgetType()Returns the type of the data.voidsetDescription(java.lang.String description)Defines the description of the data.voidsetName(java.lang.String name)Defines the name of the data.voidsetType(java.lang.String type)Defines the type of the data.
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Description copied from interface:TypedDataReturns the name of the data.
-
getDescription
public java.lang.String getDescription()
Description copied from interface:TypedDataReturns the description of the data.- Specified by:
getDescriptionin interfaceTypedData- Returns:
- the description
-
getType
public java.lang.String getType()
Description copied from interface:TypedDataReturns the type of the data.
-
setName
public void setName(java.lang.String name)
Defines the name of the data. [required by SnakeYaml]- Parameters:
name- the name
-
setDescription
public void setDescription(java.lang.String description)
Defines the description of the data. [required by SnakeYaml]- Parameters:
description- the description
-
setType
public void setType(java.lang.String type)
Defines the type of the data. [required by SnakeYaml]- Parameters:
type- the type as qualified Java name
-
-