Package org.tentackle.maven.plugin
Class PropertyDescriptor
- java.lang.Object
-
- org.tentackle.maven.plugin.PropertyDescriptor
-
public class PropertyDescriptor extends Object
Descriptor for a property to be generated byPropertiesMojo.
-
-
Constructor Summary
Constructors Constructor Description PropertyDescriptor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetConverter()The converter.StringgetInput()Gets the input value.StringgetProperty()Gets the name of the property to generatevoidsetConverter(String converter)voidsetInput(String input)voidsetProperty(String property)
-
-
-
Method Detail
-
getInput
public String getInput()
Gets the input value.- Returns:
- the input value to the converter
-
getConverter
public String getConverter()
The converter.- Returns:
- the FQCN of the converter, or the META-INF service if beginning wirh
@
-
getProperty
public String getProperty()
Gets the name of the property to generate- Returns:
- the property name
-
setInput
public void setInput(String input)
-
setConverter
public void setConverter(String converter)
-
setProperty
public void setProperty(String property)
-
-