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

org.tkit.onecx.quarkus.it.security.TestImpl Maven / Gradle / Ivy

There is a newer version: 0.34.0
Show newest version
package org.tkit.onecx.quarkus.it.security;

import jakarta.enterprise.context.ApplicationScoped;
import jakarta.ws.rs.core.Response;

import io.quarkus.security.PermissionsAllowed;

@ApplicationScoped
public class TestImpl implements TestInterface {

    @Override
    @PermissionsAllowed(value = "onecx:resource1#admin-write")
    public Response test1() {
        return Response.ok().build();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy