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

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

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

import java.util.ArrayList;
import java.util.List;

import mesosphere.client.common.ModelUtils;

public class GetEventSubscriptionsResponse {

    private List callbackUrls = new ArrayList<>();

    public List getCallbackUrls() {
        return callbackUrls;
    }

    public void setCallbackUrls(List callbackUrls) {
        this.callbackUrls = callbackUrls;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy