com.qcloud.cos.model.CORSRule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cos_api-bundle Show documentation
Show all versions of cos_api-bundle Show documentation
A single bundled dependency that includes all service and dependent JARs with third-party libraries
relocated to different namespaces.
/*
* Copyright 2010-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
* According to cos feature, we modify some class,comment, field name, etc.
*/
package com.qcloud.cos.model;
import java.io.Serializable;
import java.util.Arrays;
import java.util.List;
/**
* Container for rules of cross origin configuration.
*/
public class CORSRule implements Serializable {
private String id;
private List allowedMethods;
private List allowedOrigins;
private int maxAgeSeconds;
private List exposedHeaders;
private List allowedHeaders;
/**
* Sets the ID of this rule. Rules must be less than 255 alphanumeric
* characters, and must be unique for a bucket. If you do not assign an
* ID, one will be generated.
*/
public void setId(String id) {
this.id = id;
}
/**
* Returns the Id of this rule.
*/
public String getId() {
return id;
}
/**
* Sets the ID of this rule and returns a reference to this object for
* method chaining.
*
* @see CORSRule#setId(String)
*/
public CORSRule withId(String id) {
this.id = id;
return this;
}
/**
* Sets the allowed methods of the rule.
*/
public void setAllowedMethods(List allowedMethods) {
this.allowedMethods = allowedMethods;
}
/**
* Convenience array style method for {@link #setAllowedMethods(List)}
*/
public void setAllowedMethods(AllowedMethods... allowedMethods) {
this.allowedMethods = Arrays.asList(allowedMethods);
}
/**
* Returns the allowed methods of this rule.
*/
public List getAllowedMethods() {
return allowedMethods;
}
/**
* Sets the allowed methods of this rule and returns a reference to this object for
* method chaining.
*
* @see CORSRule#setAllowedMethods(List)
*/
public CORSRule withAllowedMethods(List allowedMethods) {
this.allowedMethods = allowedMethods;
return this;
}
/**
* Sets the allowed origins of the rule.
*/
public void setAllowedOrigins(List allowedOrigins) {
this.allowedOrigins = allowedOrigins;
}
/**
* Convenience array style method for {@link #setAllowedOrigins(List)}
*/
public void setAllowedOrigins(String... allowedOrigins) {
this.allowedOrigins = Arrays.asList(allowedOrigins);
}
/**
* Returns the allowed origins of this rule and returns a reference to this object for
* method chaining.
*/
public List getAllowedOrigins() {
return allowedOrigins;
}
/**
* Sets the allowed origins of this rule and returns a reference to this object for
* method chaining.
*
* @see CORSRule#setAllowedOrigins(List)
*/
public CORSRule withAllowedOrigins(List allowedOrigins) {
this.allowedOrigins = allowedOrigins;
return this;
}
/**
* Sets the max age in seconds of the rule.
*/
public void setMaxAgeSeconds(int maxAgeSeconds) {
this.maxAgeSeconds = maxAgeSeconds;
}
/**
* Sets the ID of this rule and returns a reference to this object for
* method chaining.
*
* @see CORSRule#setId(String)
*/
public int getMaxAgeSeconds() {
return maxAgeSeconds;
}
/**
* Sets the max age in seconds of this rule and returns a reference to this object for
* method chaining.
*
* @see CORSRule#setMaxAgeSeconds(int)
*/
public CORSRule withMaxAgeSeconds(int maxAgeSeconds) {
this.maxAgeSeconds = maxAgeSeconds;
return this;
}
/**
* Sets the expose headers of the rule.
*/
public void setExposedHeaders(List exposedHeaders) {
this.exposedHeaders = exposedHeaders;
}
/**
* Convenience array style method for {@link #setExposedHeaders(List)}
*/
public void setExposedHeaders(String... exposedHeaders) {
this.exposedHeaders = Arrays.asList(exposedHeaders);
}
/**
* Returns expose headers of this rule and returns a reference to this object for
* method chaining.
*/
public List getExposedHeaders() {
return exposedHeaders;
}
/**
* Sets the exposeHeaders of this rule and returns a reference to this object for
* method chaining.
*
* @see #setExposedHeaders(List)
*/
public CORSRule withExposedHeaders(List exposedHeaders) {
this.exposedHeaders = exposedHeaders;
return this;
}
/**
* Sets the allowed headers for the rule.
*/
public void setAllowedHeaders(List allowedHeaders) {
this.allowedHeaders = allowedHeaders;
}
/**
* Convenience array style method for {@link #setAllowedHeaders(List)}
*/
public void setAllowedHeaders(String... allowedHeaders) {
this.allowedHeaders = Arrays.asList(allowedHeaders);
}
/**
* Returns allowed headers of this rule.
*/
public List getAllowedHeaders() {
return allowedHeaders;
}
/**
* Sets the allowed headers of this rule and returns a reference to this object for
* method chaining.
*
* @see CORSRule#setAllowedHeaders(List)
*/
public CORSRule withAllowedHeaders(List allowedHeaders) {
this.allowedHeaders = allowedHeaders;
return this;
}
/**
* Enumeration of names of the all the allowed methods.
*
*/
public static enum AllowedMethods {
GET("GET"),
PUT("PUT"),
HEAD("HEAD"),
POST("POST"),
DELETE("DELETE");
private final String AllowedMethod;
private AllowedMethods(String AllowedMethod) {
this.AllowedMethod = AllowedMethod;
}
@Override
public String toString() {
return AllowedMethod;
}
public static AllowedMethods fromValue(String allowedMethod) throws IllegalArgumentException {
for (AllowedMethods method : AllowedMethods.values()) {
String methodString = method.toString();
if (methodString != null && methodString.equals
(allowedMethod)) {
return method;
}
}
throw new IllegalArgumentException(
"Cannot create enum from " + allowedMethod + " value!");
}
}
}