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

com.github.narcissujsk.openstackjsk.model.network.NetFloatingIP Maven / Gradle / Ivy

The newest version!
package com.github.narcissujsk.openstackjsk.model.network;

import com.github.narcissujsk.openstackjsk.common.Buildable;
import com.github.narcissujsk.openstackjsk.model.ModelEntity;
import com.github.narcissujsk.openstackjsk.model.network.builder.NetFloatingIPBuilder;

/**
 * The Interface NetFloatingIP.
 * 
 *
 * @author nanderson
 */
public interface NetFloatingIP extends ModelEntity, Buildable {

  /**
   * Gets the id.
   *
   * @return the id
   */
   String getId();

  /**
   * Gets the router id.
   *
   * @return the router id
   */
   String getRouterId();

  /**
   * Gets the tenant id.
   *
   * @return the tenant id
   */
   String getTenantId();

  /**
   * Gets the floating network id.
   *
   * @return the floating network id
   */
   String getFloatingNetworkId();

  /**
   * Gets the floating ip address.
   *
   * @return the floating ip address
   */
   String getFloatingIpAddress();

  /**
   * Gets the fixed ip address.
   *
   * @return the fixed ip address
   */
   String getFixedIpAddress();

  /**
   * Gets the port id.
   *
   * @return the port id
   */
   String getPortId();
   
   /**
    * Gets the floating ip status
    * 
    * @return the floating ip status
    */
   String getStatus();
   

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy