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

com.foilen.infra.api.model.user.UserRoleEditForm Maven / Gradle / Ivy

The newest version!
/*
    Foilen Infra API
    https://github.com/foilen/foilen-infra-api
    Copyright (c) 2017-2021 Foilen (https://foilen.com)

    The MIT License
    http://opensource.org/licenses/MIT

 */
package com.foilen.infra.api.model.user;

import java.util.SortedSet;
import java.util.TreeSet;

import com.foilen.smalltools.restapi.model.AbstractApiBase;

public class UserRoleEditForm extends AbstractApiBase {

    private SortedSet roles = new TreeSet<>();

    public SortedSet getRoles() {
        return roles;
    }

    public UserRoleEditForm setRoles(SortedSet roles) {
        this.roles = roles;
        return this;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy