Package org.wso2.maven.model
Class Artifact
- java.lang.Object
-
- org.wso2.maven.model.Artifact
-
public class Artifact extends Object
Class that represents the artifact in WSO2 ESB project.
-
-
Constructor Summary
Constructors Constructor Description Artifact()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetConnector()StringgetFile()StringgetName()StringgetServerRole()StringgetType()StringgetVersion()voidsetConnector(String connector)voidsetFile(String file)voidsetName(String name)voidsetServerRole(String serverRole)voidsetType(String type)voidsetVersion(String version)
-
-
-
Method Detail
-
getName
public String getName()
- Returns:
- the name
-
setName
public void setName(String name)
- Parameters:
name- of the artifact
-
getVersion
public String getVersion()
- Returns:
- the version
-
setVersion
public void setVersion(String version)
- Parameters:
version- of the artifact
-
getServerRole
public String getServerRole()
- Returns:
- the serverRole
-
setServerRole
public void setServerRole(String serverRole)
- Parameters:
serverRole- of the artifact
-
getType
public String getType()
- Returns:
- the type
-
setType
public void setType(String type)
- Parameters:
type- of the artifact
-
getFile
public String getFile()
- Returns:
- the file location
-
setFile
public void setFile(String file)
- Parameters:
file- location of the artifact
-
getConnector
public String getConnector()
- Returns:
- the connector
-
setConnector
public void setConnector(String connector)
- Parameters:
connector- of the artifact
-
-