Package org.tentackle.maven.plugin
Class PropertyDescriptor
- java.lang.Object
-
- org.tentackle.maven.plugin.PropertyDescriptor
-
public class PropertyDescriptor extends java.lang.ObjectDescriptor 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 java.lang.StringgetConverter()The converter.java.lang.StringgetInput()Gets the input value.java.lang.StringgetProperty()Gets the name of the property to generatevoidsetConverter(java.lang.String converter)voidsetInput(java.lang.String input)voidsetProperty(java.lang.String property)
-
-
-
Method Detail
-
getInput
public java.lang.String getInput()
Gets the input value.- Returns:
- the input value to the converter
-
getConverter
public java.lang.String getConverter()
The converter.- Returns:
- the FQCN of the converter, or the META-INF service if beginning wirh
@
-
getProperty
public java.lang.String getProperty()
Gets the name of the property to generate- Returns:
- the property name
-
setInput
public void setInput(java.lang.String input)
-
setConverter
public void setConverter(java.lang.String converter)
-
setProperty
public void setProperty(java.lang.String property)
-
-