mesosphere.marathon.client.model.v2.GetEventSubscriptionsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marathon-client Show documentation
Show all versions of marathon-client Show documentation
A Java API client for Mesosphere's Marathon.
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();
}
}