io.takari.maven.plugins.plugin.model.PluginDependency Maven / Gradle / Ivy
// =================== DO NOT EDIT THIS FILE ====================
// Generated by Modello 1.8.3,
// any modifications will be overwritten.
// ==============================================================
package io.takari.maven.plugins.plugin.model;
/**
* Class PluginDependency.
*
* @version $Revision$ $Date$
*/
@SuppressWarnings( "all" )
public class PluginDependency
implements java.io.Serializable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* Field groupId.
*/
private String groupId;
/**
* Field artifactId.
*/
private String artifactId;
/**
* Field version.
*/
private String version;
/**
* Field type.
*/
private String type;
//-----------/
//- Methods -/
//-----------/
/**
* Get the artifactId field.
*
* @return String
*/
public String getArtifactId()
{
return this.artifactId;
} //-- String getArtifactId()
/**
* Get the groupId field.
*
* @return String
*/
public String getGroupId()
{
return this.groupId;
} //-- String getGroupId()
/**
* Get the type field.
*
* @return String
*/
public String getType()
{
return this.type;
} //-- String getType()
/**
* Get the version field.
*
* @return String
*/
public String getVersion()
{
return this.version;
} //-- String getVersion()
/**
* Set the artifactId field.
*
* @param artifactId
*/
public void setArtifactId( String artifactId )
{
this.artifactId = artifactId;
} //-- void setArtifactId( String )
/**
* Set the groupId field.
*
* @param groupId
*/
public void setGroupId( String groupId )
{
this.groupId = groupId;
} //-- void setGroupId( String )
/**
* Set the type field.
*
* @param type
*/
public void setType( String type )
{
this.type = type;
} //-- void setType( String )
/**
* Set the version field.
*
* @param version
*/
public void setVersion( String version )
{
this.version = version;
} //-- void setVersion( String )
}