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

org.openstack4j.model.network.HostRoute Maven / Gradle / Ivy

There is a newer version: 3.12
Show newest version
package org.openstack4j.model.network;

import org.openstack4j.model.ModelEntity;

/**
 * A Network Host based Routing Entry
 *
 * @author Jeremy Unruh
 */
public interface HostRoute extends ModelEntity {

    /**
     * Gets the destination for the route
     *
     * @return the destination host for this host route
     */
    String getDestination();

    /**
     * Gets the NextHop for this route
     *
     * @return the NextHop for this host route
     */
    String getNexthop();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy