
io.github.martinschneider.justtestlah.mobile.tools.ApplicationInfo Maven / Gradle / Ivy
package io.github.martinschneider.justtestlah.mobile.tools;
/** DTO to hold application meta information. */
public class ApplicationInfo {
@Override
public String toString() {
return applicationName + " " + versionName + "_" + versionCode;
}
private String applicationName;
private String versionName;
private String versionCode;
public String getApplicationName() {
return applicationName;
}
public void setApplicationName(String applicationName) {
this.applicationName = applicationName;
}
public String getVersionName() {
return versionName;
}
public void setVersionName(String versionName) {
this.versionName = versionName;
}
public String getVersionCode() {
return versionCode;
}
public void setVersionCode(String versionCode) {
this.versionCode = versionCode;
}
public ApplicationInfo(String applicationName, String versionName, String versionCode) {
super();
this.applicationName = applicationName;
this.versionName = versionName;
this.versionCode = versionCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy