blob: 8308c85d1a3ba587378639e200010585e9e00b3c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Boeing.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.ats.api.user;
import java.util.LinkedList;
import java.util.List;
/**
* @author Donald G. Dunne
*/
public class JaxAtsUsers {
private List<JaxAtsUser> users = new LinkedList<JaxAtsUser>();
public JaxAtsUsers() {
// for jax-rs
}
public List<JaxAtsUser> getUsers() {
return users;
}
public void setUsers(List<JaxAtsUser> users) {
this.users = users;
}
}