Class ExecuteTaskSupport
- java.lang.Object
-
- org.sonatype.maven.polyglot.execute.ExecuteTaskSupport
-
- All Implemented Interfaces:
ExecuteTask
- Direct Known Subclasses:
AtomExecuteTask
public abstract class ExecuteTaskSupport extends Object implements ExecuteTask
Support forExecuteTask
implementations.- Since:
- 0.7
- Author:
- Jason Dillon
-
-
Constructor Summary
Constructors Constructor Description ExecuteTaskSupport()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getId()
String
getPhase()
String
getProfileId()
profile id of the execute task.void
setId(String id)
void
setPhase(String phase)
void
setProfileId(String profileId)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.sonatype.maven.polyglot.execute.ExecuteTask
execute
-
-
-
-
Method Detail
-
getId
public String getId()
- Specified by:
getId
in interfaceExecuteTask
-
setId
public void setId(String id)
-
getPhase
public String getPhase()
- Specified by:
getPhase
in interfaceExecuteTask
-
setPhase
public void setPhase(String phase)
-
getProfileId
public String getProfileId()
Description copied from interface:ExecuteTask
profile id of the execute task. can benull
then the execute task belongs to project.build- Specified by:
getProfileId
in interfaceExecuteTask
-
setProfileId
public void setProfileId(String profileId)
-
-