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

com.woorea.openstack.quantum.model.Networks 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;
import java.util.Iterator;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;

public class Networks implements Iterable, Serializable{
	
	@JsonProperty("networks")
	private List list;

	/**
	 * @return the list
	 */
	public List getList() {
		return list;
	}


	/**
	 * @param list the list to set
	 */
	public void setList(List list) {
		this.list = list;
	}


	public String toString() {
		return "Networks [list=" + list + "]";
	}


	public Iterator iterator() {
		return list.iterator();
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy