org.apache.maven.model
Class Profile

java.lang.Object
  extended by org.apache.maven.model.ModelBase
      extended by org.apache.maven.model.Profile
All Implemented Interfaces:
java.io.Serializable

public class Profile
extends ModelBase
implements java.io.Serializable

Modifications to the build process which is activated based on environmental parameters or command line arguments.

Version:
$Revision$ $Date$
See Also:
Serialized Form

Field Summary
private  Activation activation
          The conditional logic which will automatically trigger the inclusion of this profile.
private  BuildBase build
          Information required to build the project.
private  java.lang.String id
          The identifier of this build profile.
private  java.lang.String source
           
 
Constructor Summary
Profile()
           
 
Method Summary
 Activation getActivation()
          Get the conditional logic which will automatically trigger the inclusion of this profile.
 BuildBase getBuild()
          Get information required to build the project.
 java.lang.String getId()
          Get the identifier of this build profile.
 java.lang.String getSource()
           
 void setActivation(Activation activation)
          Set the conditional logic which will automatically trigger the inclusion of this profile.
 void setBuild(BuildBase build)
          Set information required to build the project.
 void setId(java.lang.String id)
          Set the identifier of this build profile.
 void setSource(java.lang.String source)
           
 java.lang.String toString()
           
 
Methods inherited from class org.apache.maven.model.ModelBase
addDependency, addModule, addPluginRepository, addProperty, addRepository, getDependencies, getDependencyManagement, getDistributionManagement, getModules, getPluginRepositories, getProperties, getReporting, getReports, getRepositories, removeDependency, removeModule, removePluginRepository, removeRepository, setDependencies, setDependencyManagement, setDistributionManagement, setModules, setPluginRepositories, setProperties, setReporting, setReports, setRepositories
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

id

private java.lang.String id
The identifier of this build profile. This used both for command line activation, and identifies identical profiles to merge with during inheritance.


activation

private Activation activation
The conditional logic which will automatically trigger the inclusion of this profile.


build

private BuildBase build
Information required to build the project.


source

private java.lang.String source
Constructor Detail

Profile

public Profile()
Method Detail

getActivation

public Activation getActivation()
Get the conditional logic which will automatically trigger the inclusion of this profile.

Returns:
Activation

getBuild

public BuildBase getBuild()
Get information required to build the project.

Returns:
BuildBase

getId

public java.lang.String getId()
Get the identifier of this build profile. This used both for command line activation, and identifies identical profiles to merge with during inheritance.

Returns:
String

setActivation

public void setActivation(Activation activation)
Set the conditional logic which will automatically trigger the inclusion of this profile.

Parameters:
activation -

setBuild

public void setBuild(BuildBase build)
Set information required to build the project.

Parameters:
build -

setId

public void setId(java.lang.String id)
Set the identifier of this build profile. This used both for command line activation, and identifies identical profiles to merge with during inheritance.

Parameters:
id -

setSource

public void setSource(java.lang.String source)

getSource

public java.lang.String getSource()

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object