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

org.openl.rules.rest.model.GroupSettingsModel Maven / Gradle / Ivy

There is a newer version: 5.27.9
Show newest version
package org.openl.rules.rest.model;

import javax.validation.constraints.Size;

import io.swagger.v3.oas.annotations.Parameter;

public class GroupSettingsModel {

    @Size(max = 65)
    @Parameter(description = "Default user group")
    private String defaultGroup;

    public String getDefaultGroup() {
        return defaultGroup;
    }

    public void setDefaultGroup(String defaultGroup) {
        this.defaultGroup = defaultGroup;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy