![JAR search and dependency download from the Maven repository](/logo.png)
com.netease.cloud.Protocol Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nos-sdk-java-publiccloud Show documentation
Show all versions of nos-sdk-java-publiccloud Show documentation
nos java sdk to the Central Repository
The newest version!
package com.netease.cloud;
/**
* Represents the communication protocol to use when sending requests to AWS.
*
*/
public enum Protocol {
/**
* HTTP Protocol -
*/
HTTP("http"),
/**
* HTTPS Protocol - Using the HTTPS protocol is more secure than using the
* HTTP protocol.
*/
HTTPS("https");
private final String protocol;
private Protocol(String protocol) {
this.protocol = protocol;
}
/*
* (non-Javadoc)
*
* @see java.lang.Enum#toString()
*/
@Override
public String toString() {
return protocol;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy