org.apereo.cas.services.OidcBackchannelTokenDeliveryModes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cas-server-support-oidc-services Show documentation
Show all versions of cas-server-support-oidc-services Show documentation
cas-server-support-oidc-services
package org.apereo.cas.services;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
/**
* This is {@link OidcBackchannelTokenDeliveryModes}.
*
* @author Misagh Moayyed
* @since 7.1.0
*/
@Getter
@RequiredArgsConstructor
public enum OidcBackchannelTokenDeliveryModes {
/**
* Push oidc backchannel token delivery modes.
*/
PING("ping"),
/**
* Push oidc backchannel token delivery modes.
*/
PUSH("push"),
/**
* Poll oidc backchannel token delivery modes.
*/
POLL("poll");
private final String mode;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy