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

org.cloudfoundry.client.v3.routes.RouteDestinations Maven / Gradle / Ivy

The newest version!
package org.cloudfoundry.client.v3.routes;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
import java.util.Map;
import org.cloudfoundry.AllowNulls;
import org.cloudfoundry.client.v3.Link;

/**
 * The Route Destinations
 */
public abstract class RouteDestinations {

    /**
     * Links to related resources and actions for the resource
     */
    @AllowNulls
    @JsonProperty("links")
    public abstract Map getLinks();

    /**
     * The destinations
     */
    @JsonProperty("destinations")
    abstract List getDestinations();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy