![JAR search and dependency download from the Maven repository](/logo.png)
com.aeontronix.anypointsdk.cloudhub.CHApplicationMuleVersion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of anypoint-sdk Show documentation
Show all versions of anypoint-sdk Show documentation
Anypoint Software Development Toolkit
package com.aeontronix.anypointsdk.cloudhub;
import com.fasterxml.jackson.annotation.JsonProperty;
public class CHApplicationMuleVersion {
@JsonProperty("updateId")
private String updateId;
@JsonProperty("latestUpdateId")
private String latestUpdateId;
@JsonProperty("endOfSupportDate")
private long endOfSupportDate;
@JsonProperty("version")
private String version;
public void setUpdateId(String updateId){
this.updateId = updateId;
}
public String getUpdateId(){
return updateId;
}
public void setLatestUpdateId(String latestUpdateId){
this.latestUpdateId = latestUpdateId;
}
public String getLatestUpdateId(){
return latestUpdateId;
}
public void setEndOfSupportDate(long endOfSupportDate){
this.endOfSupportDate = endOfSupportDate;
}
public long getEndOfSupportDate(){
return endOfSupportDate;
}
public void setVersion(String version){
this.version = version;
}
public String getVersion(){
return version;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy