a3181aefba0b8da2a164a444ebf5981f2c6fd2e2
[aaa.git] / aaa-idmlight / src / main / java / org / opendaylight / aaa / idm / model / Users.java
1 /*
2  * Copyright (c) 2014 Hewlett-Packard Development Company, L.P. and others.
3  * All rights reserved.
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse License v1.0 which accompanies this distribution,
7  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  */
9 package org.opendaylight.aaa.idm.model;
10
11 /**
12  *
13  * @author peter.mellquist@hp.com 
14  *
15  */
16
17
18 import javax.xml.bind.annotation.XmlRootElement;
19 import javax.xml.bind.annotation.XmlElement;
20 import java.util.List;
21 import java.util.ArrayList;
22
23 @XmlRootElement(name = "users")
24 public class Users {
25    private List<User> users = new ArrayList<User>();
26
27    public void setUsers(List<User> users) {
28       this.users = users;
29    } 
30
31    public List<User> getUsers() {
32       return users;
33    }
34
35 }
36