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

skeleton.grails-app.controllers.rest.SecuredController.groovy Maven / Gradle / Ivy

The newest version!
package rest

import grails.plugin.springsecurity.annotation.Secured

class SecuredController {

    def springSecurityService

    @Secured(['ROLE_USER'])
    def index() {
        render springSecurityService.principal.username
    }

    @Secured(['ROLE_SUPER_ADMIN'])
    def superAdmin() {
        render springSecurityService.principal.username
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy