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

com.aeontronix.anypointsdk.cloudhub.CHApplicationMuleVersion Maven / Gradle / Ivy

There is a newer version: 1.0.0-beta35
Show newest version
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