blob: 9e37e584b1648ccafb70e932387d7122400543da [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License 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.
*/
package org.apache.camel.component.aws.s3;
/**
* Constants used in Camel AWS S3 module
*
*/
public interface S3Constants {
String BUCKET_NAME = "CamelAwsS3BucketName";
String CACHE_CONTROL = "CamelAwsS3ContentControl";
String CONTENT_DISPOSITION = "CamelAwsS3ContentDisposition";
String CONTENT_ENCODING = "CamelAwsS3ContentEncoding";
String CONTENT_LENGTH = "CamelAwsS3ContentLength";
String CONTENT_MD5 = "CamelAwsS3ContentMD5";
String CONTENT_TYPE = "CamelAwsS3ContentType";
String E_TAG = "CamelAwsS3ETag";
String KEY = "CamelAwsS3Key";
String LAST_MODIFIED = "CamelAwsS3LastModified";
String VERSION_ID = "CamelAwsS3VersionId";
}