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

brooklyn.networking.sdn.ibm.SdnVeNetwork Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
/*
 * Copyright 2014-2015 by Cloudsoft Corporation Limited
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package brooklyn.networking.sdn.ibm;

import java.net.InetAddress;

import brooklyn.catalog.Catalog;
import brooklyn.config.ConfigKey;
import brooklyn.entity.basic.ConfigKeys;
import brooklyn.entity.proxying.ImplementedBy;
import brooklyn.event.basic.AttributeSensorAndConfigKey;
import brooklyn.networking.sdn.SdnProvider;
import brooklyn.util.flags.SetFromFlag;

/**
 * A collection of machines that are part of the IBM SDN VE network.
 */
@Catalog(name = "IBM SDN VE", description = "IBM SDN VE Network Provider")
@ImplementedBy(SdnVeNetworkImpl.class)
public interface SdnVeNetwork extends SdnProvider {

    @SetFromFlag("dmc")
    ConfigKey DOVE_CONTROLLER = ConfigKeys.newConfigKey(InetAddress.class, "sdn.ibm.dmc.address", "The IBM SDN VE DMC IP address");

    @SetFromFlag("dmcUser")
    ConfigKey DOVE_CONTROLLER_USERNAME = ConfigKeys.newStringConfigKey("sdn.ibm.dmc.username", "The IBM SDN VE DMC username");

    @SetFromFlag("dmcPassword")
    ConfigKey DOVE_CONTROLLER_PASSWORD = ConfigKeys.newStringConfigKey("sdn.ibm.dmc.password", "The IBM SDN VE DMC password");

    @SetFromFlag("vlanId")
    ConfigKey VLAN_ID = ConfigKeys.newIntegerConfigKey("sdn.ibm.vlanId", "Softlayer VLAN ID");

    AttributeSensorAndConfigKey CONFIGURATION_XML_TEMPLATE = ConfigKeys.newStringSensorAndConfigKey("sdn.ibm.config.xml.url",
            "Configuration XML template for Dove SDN", "classpath://brooklyn/networking/sdn/ibm/dove.xml");

    AttributeSensorAndConfigKey NETWORK_SETUP_SCRIPT_URL = ConfigKeys.newStringSensorAndConfigKey("sdn.ibm.networkSetup.script.url",
            "Network setup script file for Dove SDN", "classpath://brooklyn/networking/sdn/ibm/setup_networkv2.sh");


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy