brooklyn.networking.sdn.SdnAgentDriver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of brooklyn-clocker-docker Show documentation
Show all versions of brooklyn-clocker-docker Show documentation
Clocker Brooklyn entities and locations for Docker integration.
/*
* 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);
}