com.woorea.openstack.quantum.model.HostRoute Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (C) 2016 AT&T Intellectual Property. All rights reserved. This code is licensed under the Apache License, Version 2.0
*******************************************************************************/
package com.woorea.openstack.quantum.model;
import java.io.Serializable;
public class HostRoute implements Serializable {
private String destination;
private String nexthop;
public String getDestination() {
return destination;
}
public void setDestination(String destination) {
this.destination = destination;
}
public String getNexthop() {
return nexthop;
}
public void setNexthop(String nexthop) {
this.nexthop = nexthop;
}
@Override public String toString() {
return "[destination=" + destination + ", nexthop=" + nexthop + "]";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy