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

com.netgrif.application.engine.orgstructure.groups.config.GroupConfigurationProperties Maven / Gradle / Ivy

Go to download

System provides workflow management functions including user, role and data management.

There is a newer version: 6.4.0
Show newest version
package com.netgrif.application.engine.orgstructure.groups.config;

import lombok.Data;
import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

@Slf4j
@Data
@Component
@ConfigurationProperties(prefix = "nae.group")
public class GroupConfigurationProperties {

    /**
     * Determines whether user's default groups are enabled and can be created
     * */
    private boolean defaultEnabled = true;

    /**
     * Determines whether default system group is enabled and can be created
     * */
    private boolean systemEnabled = true;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy