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

io.inugami.configuration.models.app.UsersConfig Maven / Gradle / Ivy

/* --------------------------------------------------------------------
 *  Inugami  
 * --------------------------------------------------------------------
 * 
 * This program is free software: you can redistribute it and/or modify  
 * it under the terms of the GNU General Public License as published by  
 * the Free Software Foundation, version 3.
 *
 * This program is distributed in the hope that it will be useful, but 
 * WITHOUT ANY WARRANTY; without even the implied warranty of 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License 
 * along with this program. If not, see .
 */
package io.inugami.configuration.models.app;

import java.io.Serializable;
import java.util.List;

import io.inugami.api.exceptions.TechnicalException;
import io.inugami.api.functionnals.PostProcessing;
import io.inugami.api.processors.ConfigHandler;

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

/**
 * UsersConfig
 * 
 * @author patrickguillerm
 * @since 16 déc. 2017
 */
@XStreamAlias("users")
public class UsersConfig implements Serializable, PostProcessing> {

    private static final long serialVersionUID = -5456237328606340402L;

    @XStreamImplicit
    private List  users;

    public List getUsers() {
        return users;
    }

    public void setUsers(List users) {
        this.users = users;
    }

    @Override
    public void postProcessing(ConfigHandler ctx) throws TechnicalException {
        if (users != null) {
            for (UserConfig user : users) {
                user.postProcessing(ctx);
            }
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy