blob: 64e405e17461401dee0ea8c00936aa78ddad4178 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014, 2017 Frank Becker and others.
* 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:
* Frank Becker - initial API and implementation
* Red Hat Inc. - modified for use in OSIO Rest Connector
*******************************************************************************/
package org.eclipse.linuxtools.internal.mylyn.osio.rest.core.response.data;
public class UsersResponse implements RestResponse<User> {
private User[] data;
@Override
public User[] getArray() {
return data;
}
}