com.sap.cloud.security.ams.dcl.client.pdp.HealthState Maven / Gradle / Ivy
The newest version!
/************************************************************************
* © 2019-2024 SAP SE or an SAP affiliate company. All rights reserved. *
************************************************************************/
package com.sap.cloud.security.ams.dcl.client.pdp;
/**
* Possible values for policy decision point health state
*/
public enum HealthState {
/**
* Defined policies have been configured and can be used successfully
*/
OK,
/**
* Error occurred
*/
FATAL,
/**
* Remote bundle update failed and couldn't be activated
*/
UPDATE_FAILED,
/**
* Remote bundles couldn't be downloaded and/or activated
*/
NOT_READY,
/**
* Policy decision point communication with server failed or policy decision point is closed
*/
UNREACHABLE
}