All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.qcloud.cos.meta.FileAuthority Maven / Gradle / Ivy

There is a newer version: 5.6.238.2
Show newest version
package com.qcloud.cos.meta;

public enum FileAuthority {
	INVALID("eInvalid"), 
	WPRIVATE("eWRPrivate"), 
	WPRIVATERPUBLIC("eWPrivateRPublic");

	private String authority;

	private FileAuthority(String authority) {
		this.authority = authority;
	}

	@Override
	public String toString() {
		return this.authority;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy