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

com.woorea.openstack.quantum.model.HostRoute Maven / Gradle / Ivy

There is a newer version: 3.3.30-oss
Show newest version
/*******************************************************************************
 * 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