All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wso2.maven.car.artifact.artifact Maven / Gradle / Ivy

The newest version!
package org.wso2.maven.car.artifact;

public class artifact {
	
	private String groupId;
	
	private String artifactId;
	
	private String version;
	
	private String finalName;

	/**
	 * @return the groupId
	 */
	public String getGroupId() {
		return groupId;
	}

	/**
	 * @param groupId the groupId to set
	 */
	public void setGroupId(String groupId) {
		this.groupId = groupId;
	}

	/**
	 * @return the artifactId
	 */
	public String getArtifactId() {
		return artifactId;
	}

	/**
	 * @param artifactId the artifactId to set
	 */
	public void setArtifactId(String artifactId) {
		this.artifactId = artifactId;
	}

	/**
	 * @return the version
	 */
	public String getVersion() {
		return version;
	}

	/**
	 * @param version the version to set
	 */
	public void setVersion(String version) {
		this.version = version;
	}

	/**
	 * @return the finalName
	 */
	public String getFinalName() {
		return finalName;
	}

	/**
	 * @param finalName the finalName to set
	 */
	public void setFinalName(String finalName) {
		this.finalName = finalName;
	}
	
	

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy