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

com.blossomproject.autoconfigure.ui.common.privileges.FileManagerPrivilegesConfiguration Maven / Gradle / Ivy

package com.blossomproject.autoconfigure.ui.common.privileges;

import com.blossomproject.core.common.utils.privilege.Privilege;
import com.blossomproject.core.common.utils.privilege.SimplePrivilege;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class FileManagerPrivilegesConfiguration {

  @Bean
  public Privilege fileManagerReadPrivilegePlugin() {
    return new SimplePrivilege("content", "filemanager", "read");
  }

  @Bean
  public Privilege fileManagerWritePrivilegePlugin() {
    return new SimplePrivilege("content", "filemanager", "write");
  }

  @Bean
  public Privilege fileManagerCreatePrivilegePlugin() {
    return new SimplePrivilege("content", "filemanager", "create");
  }

  @Bean
  public Privilege fileManagerDeletePrivilegePlugin() {
    return new SimplePrivilege("content", "filemanager", "delete");
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy