com.coveo.pushapiclient.Environment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of push-api-client.java Show documentation
Show all versions of push-api-client.java Show documentation
Coveo Push API client. See more on https://github.com/coveo/push-api-client.java
The newest version!
package com.coveo.pushapiclient;
/**
* Available environments to use as the host for the PushAPI.
*/
public enum Environment {
PRODUCTION( "prod"),
HIPAA("hipaa"),
DEVELOPMENT("dev"),
STAGING("stg");
private String value;
Environment(String value) {
this.value = value;
}
public String getValue() {
return this.value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy