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

io.sealights.agents.plugin.upgrade.entities.UpgradeResponse Maven / Gradle / Ivy

package io.sealights.agents.plugin.upgrade.entities;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

/**
 * Created by shahar on 7/31/2016.
 */

@JsonIgnoreProperties(ignoreUnknown = true)
public class UpgradeResponse {
    private AgentInfo agent;
    private UpgradeResponseMeta meta;

    public UpgradeResponse(){
    }

    public AgentInfo getAgent() {
        return agent;
    }

    public void setAgent(AgentInfo agent) {
        this.agent = agent;
    }

    public UpgradeResponseMeta getMeta() {
        return meta;
    }

    public void setMeta(UpgradeResponseMeta meta) {
        this.meta = meta;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy