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

io.apicurio.registry.rest.v2.UsersResource Maven / Gradle / Ivy

There is a newer version: 3.0.4
Show newest version
package io.apicurio.registry.rest.v2;

import io.apicurio.registry.rest.v2.beans.UserInfo;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.Produces;

/**
 * A JAX-RS interface. An implementation of this interface must be provided.
 */
@Path("/apis/registry/v2/users")
public interface UsersResource {
  /**
   * 

* Returns information about the currently authenticated user. *

* */ @Path("/me") @GET @Produces("application/json") UserInfo getCurrentUserInfo(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy