com.sap.cloud.yaas.servicesdk.apiconsole.model.AppInfo Maven / Gradle / Ivy
/*
* © 2016 SAP SE or an SAP affiliate company.
* All rights reserved.
* Please see http://www.sap.com/corporate-en/legal/copyright/index.epx for additional trademark information and
* notices.
*/
package com.sap.cloud.yaas.servicesdk.apiconsole.model;
/**
* Class containing information about application.
*/
public class AppInfo
{
/**
* Version.
*/
private String version;
/**
* Group Id.
*/
private String groupId;
/**
* Artifact Id.
*/
private String artifactId;
/**
* Build timestamp.
*/
private String buildTime;
public String getVersion()
{
return version;
}
public void setVersion(final String version)
{
this.version = version;
}
public String getGroupId()
{
return groupId;
}
public void setGroupId(final String groupId)
{
this.groupId = groupId;
}
public String getArtifactId()
{
return artifactId;
}
public void setArtifactId(final String artifactId)
{
this.artifactId = artifactId;
}
public String getBuildTime()
{
return buildTime;
}
public void setBuildTime(final String buildTime)
{
this.buildTime = buildTime;
}
}