com.qcloud.cos.internal.Constants 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.internal;
public class Constants {
/**
* HTTP status code indicating that preconditions failed and thus the
* request failed.
*/
public static final int FAILED_PRECONDITION_STATUS_CODE = 412;
/** Kilobytes */
public static final int KB = 1024;
/** Megabytes */
public static final int MB = 1024 * KB;
/** Gigabytes */
public static final long GB = 1024 * MB;
/** The maximum allowed parts in a multipart upload. */
public static final int MAXIMUM_UPLOAD_PARTS = 10000;
public static final int NO_SUCH_BUCKET_STATUS_CODE = 404;
public static final int BUCKET_ACCESS_FORBIDDEN_STATUS_CODE = 403;
public static final int BUCKET_REDIRECT_STATUS_CODE = 301;
/** Represents a null version ID */
public static final String NULL_VERSION_ID = "null";
/** URL encoding for object keys when list object */
public static final String URL_ENCODING = "url";
/** Default encoding used for url encode */
public static final String DEFAULT_ENCODING = "UTF-8";
public static final String ISO_8859_1_ENCODING = "ISO-8859-1";
public static final String UTF8_ENCODING = "UTF-8";
public static final String BUCKET_COS_ARCH_TYPE = "COS";
public static final String BUCKET_OFS_ARCH_TYPE = "OFS";
}