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

com.xcase.box.impl.simple.transputs.GetUsersResponseImpl Maven / Gradle / Ivy

/**
 * Copyright 2016 Xcase All rights reserved.
 */
package com.xcase.box.impl.simple.transputs;

import com.xcase.box.objects.BoxUser;
import com.xcase.box.transputs.GetUsersResponse;
import java.util.List;

/**
 *
 * @author martin
 */
public class GetUsersResponseImpl extends BoxResponseImpl implements GetUsersResponse {

    private List userList;

    /**
     * @return the users
     */
    public List getUsers() {
        return userList;
    }

    /**
     * @param users the users to set
     */
    public void setUsers(List users) {
        this.userList = users;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy