![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.maven.plugin.descriptor.model.Configuration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-plugin-api Show documentation
Show all versions of maven-plugin-api Show documentation
The API for plugins - Mojos - development.
// =================== DO NOT EDIT THIS FILE ====================
// Generated by Modello 1.7,
// any modifications will be overwritten.
// ==============================================================
package org.apache.maven.plugin.descriptor.model;
/**
* A parameter configuration.
*
* @version $Revision$ $Date$
*/
@SuppressWarnings( "all" )
public class Configuration
implements java.io.Serializable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* Parameter expression, to let user override default value
* with a system property, pom property or settings property.
*/
private String expression;
/**
* Field implementation.
*/
private String implementation;
/**
* The default value, as an expression that will be evaluated
* at injection or run-time.
*/
private String defaultValue;
//-----------/
//- Methods -/
//-----------/
/**
* Get the default value, as an expression that will be
* evaluated at injection or run-time.
*
* @return String
*/
public String getDefaultValue()
{
return this.defaultValue;
} //-- String getDefaultValue()
/**
* Get parameter expression, to let user override default value
* with a system property, pom property or settings property.
*
* @return String
*/
public String getExpression()
{
return this.expression;
} //-- String getExpression()
/**
* Get the implementation field.
*
* @return String
*/
public String getImplementation()
{
return this.implementation;
} //-- String getImplementation()
/**
* Set the default value, as an expression that will be
* evaluated at injection or run-time.
*
* @param defaultValue
*/
public void setDefaultValue( String defaultValue )
{
this.defaultValue = defaultValue;
} //-- void setDefaultValue( String )
/**
* Set parameter expression, to let user override default value
* with a system property, pom property or settings property.
*
* @param expression
*/
public void setExpression( String expression )
{
this.expression = expression;
} //-- void setExpression( String )
/**
* Set the implementation field.
*
* @param implementation
*/
public void setImplementation( String implementation )
{
this.implementation = implementation;
} //-- void setImplementation( String )
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy