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

org.openstack4j.openstack.networking.domain.NeutronSubnetUpdate Maven / Gradle / Ivy

package org.openstack4j.openstack.networking.domain;

import java.util.List;

import org.openstack4j.model.ModelEntity;
import org.openstack4j.model.network.Subnet;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonRootName;

/**
 * Encapsulates the updateable view for a Subnet within Neutron
 * 
 * @author Jeremy Unruh
 */
@JsonRootName("subnet")
@JsonIgnoreProperties(ignoreUnknown = true)
public class NeutronSubnetUpdate implements ModelEntity {

    private static final long serialVersionUID = 1L;
    
    @JsonProperty
    private String name;
    @JsonProperty("dns_nameservers")
    private List dnsNames;
    @JsonProperty("allocation_pools")
    private List pools;
    @JsonProperty("host_routes")
    private List hostRoutes;
    @JsonProperty("gateway_ip")
    private String gateway;
    
    @SuppressWarnings("unchecked")
    public static NeutronSubnetUpdate createFromSubnet(Subnet in) {
        NeutronSubnetUpdate ns = new NeutronSubnetUpdate();
        ns.name = in.getName();
        ns.dnsNames = in.getDnsNames();
        ns.pools = (List) in.getAllocationPools();
        ns.hostRoutes = (List) in.getHostRoutes();
        ns.gateway = in.getGateway();
        return ns;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy