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

com.woorea.openstack.keystone.model.Users Maven / Gradle / Ivy

There is a newer version: 3.2.9
Show newest version
package com.woorea.openstack.keystone.model;

import java.io.Serializable;
import java.util.Iterator;
import java.util.List;

import org.codehaus.jackson.annotate.JsonProperty;

public class Users implements Iterable, Serializable {

	@JsonProperty("users")
	private List list;

	/**
	 * @return the list
	 */
	public List getList() {
		return list;
	}
	
	/* (non-Javadoc)
	 * @see java.lang.Object#toString()
	 */
	@Override
	public String toString() {
		return "Users [list=" + list + "]";
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy