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

brooklyn.networking.sdn.SdnAgentDriver Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
/*
 * Copyright 2014-2015 by Cloudsoft Corporation Limited
 */
package brooklyn.networking.sdn;

import java.net.InetAddress;

import brooklyn.entity.basic.SoftwareProcessDriver;
import brooklyn.util.net.Cidr;

public interface SdnAgentDriver extends SoftwareProcessDriver {

    void createSubnet(String virtualNetworkId, String subnetId, Cidr subnetCidr);

    InetAddress attachNetwork(String containerId, String subnetId);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy