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

mesosphere.marathon.client.model.v2.GetAppVersionResponse Maven / Gradle / Ivy

There is a newer version: 0.6.3
Show newest version
package mesosphere.marathon.client.model.v2;

import java.util.Collection;

import mesosphere.client.common.ModelUtils;

/**
 * Created by tt044106 on 10/28/16.
 */
public class GetAppVersionResponse {
    private Collection versions;

    public Collection getVersions() {
        return versions;
    }

    public void setVersions(Collection versions) {
        this.versions = versions;
    }

    @Override
    public String toString() {
        return ModelUtils.toString(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy