use of org.keycloak.protocol.oidc.grants.device.endpoints.DeviceEndpoint in project keycloak by keycloak.
the class AuthorizationEndpoint method authorizeDevice.
/**
* OAuth 2.0 Device Authorization endpoint
*/
@Path("device")
public Object authorizeDevice() {
DeviceEndpoint endpoint = new DeviceEndpoint(realm, event);
ResteasyProviderFactory.getInstance().injectProperties(endpoint);
return endpoint;
}
Aggregations