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

org.tinygroup.menutree.config.UserConfigs Maven / Gradle / Ivy

The newest version!
package org.tinygroup.menutree.config;

import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamImplicit;

import java.util.ArrayList;
import java.util.List;

/**
 * Created by wangwy11342 on 2016/10/18.
 */
@XStreamAlias("users")
public class UserConfigs {
    @XStreamImplicit
    private List userList;

    public List getUserList() {
        return userList;
    }

    public void setUserList(List userList) {
        this.userList = userList;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy