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

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

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

import jakarta.ws.rs.Consumes;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.Response;

@Path("test2")
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public interface TestInterface {

    @GET
    @Path("1")
    Response test1();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy