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

com.aliyun.oss.model.ListVersionsRequest Maven / Gradle / Ivy

Go to download

The Aliyun OSS SDK for Java used for accessing Aliyun Object Storage Service, includes all service and dependent JARs.

The newest version!
/*
 * 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 com.aliyun.oss.model;

import com.aliyun.oss.internal.OSSConstants;

/**
 * Provides options for returning
 * a list of summary information about the versions in a specified
 * bucket.
 * 

* Returned version summaries are ordered first by key and then by version. * Keys are sorted lexicographically (i.e. alphabetically from a-Z) and versions * are sorted from the most recent to the least recent. * Versions with data and * versions with delete markers are included in the results. *

*

* Buckets can contain a virtually unlimited number of keys, and the complete * results of a list query can be extremely large. To manage large result sets, * OSS uses pagination to split them into multiple responses. * Always check the {@link ObjectListing#isTruncated()} method to see * if the returned listing is complete, or if callers need to make additional * calls to get more results. *

*

* Objects created before versioning was enabled or when versioning is suspended * will be given the default null version ID (see * {@link com.aliyun.oss.internal.OSSConstants#NULL_VERSION_ID}). Note that the * null version ID is a valid version ID and is not the same * as not having a version ID. *

*

* Calling {@link ListVersionsRequest#setDelimiter(String)} * sets the delimiter, allowing groups of keys that share the * delimiter-terminated prefix to be included * in the returned listing. This allows applications to organize and browse * their keys hierarchically, similar to how a file system organizes files * into directories. These common prefixes can be retrieved * through the {@link VersionListing#getCommonPrefixes()} method. *

*

* For example, consider a bucket that contains the following keys: *

    *
  • "foo/bar/baz"
  • *
  • "foo/bar/bash"
  • *
  • "foo/bar/bang"
  • *
  • "foo/boo"
  • *
* If calling listVersions with * a prefix value of "foo/" and a delimiter value of "/" * on this bucket, an VersionListing is returned that contains one key * ("foo/boo") and one entry in the common prefixes list ("foo/bar/"). * To see deeper into the virtual hierarchy, make another * call to listVersions setting the prefix parameter to any interesting * common prefix to list the individual keys under that prefix. *

* The total number of keys in a bucket doesn't substantially affect list performance, * nor does the presence or absence of additional request parameters. *

*

* For more information about enabling versioning for a bucket, see * {@link com.aliyun.oss.OSS#setBucketVersioning(SetBucketVersioningRequest)}. *

*/ public class ListVersionsRequest extends GenericRequest { /** * Optional parameter restricting the response to keys which begin with the * specified prefix. You can use prefixes to separate a bucket into * different sets of keys in a way similar to how a file system uses * folders. */ private String prefix; /** * Optional parameter indicating where in the sorted list of all versions in * the specified bucket to begin returning results. Results are always * ordered first lexicographically (i.e. alphabetically) and then from most * recent version to least recent version. If a keyMarker is used without a * versionIdMarker, results begin immediately after that key's last version. * When a keyMarker is used with a versionIdMarker, results begin * immediately after the version with the specified key and version ID. *

* This enables pagination; to get the next page of results use the next key * marker and next version ID marker (from * {@link VersionListing#getNextKeyMarker()} and * {@link VersionListing#getNextVersionIdMarker()}) as the markers for the * next request to list versions. */ private String keyMarker; /** * Optional parameter indicating where in the sorted list of all versions in * the specified bucket to begin returning results. Results are always * ordered first lexicographically (i.e. alphabetically) and then from most * recent version to least recent version. A keyMarker must be specified * when specifying a versionIdMarker. Results begin immediately after the * version with the specified key and version ID. *

* This enables pagination; to get the next page of results use the next key * marker and next version ID marker (from * {@link VersionListing#getNextKeyMarker()} and * {@link VersionListing#getNextVersionIdMarker()}) as the markers for the * next request to list versions. */ private String versionIdMarker; /** * Optional parameter that causes keys that contain the same string between * the prefix and the first occurrence of the delimiter to be rolled up into * a single result element in the * {@link VersionListing#getCommonPrefixes()} list. These rolled-up keys * are not returned elsewhere in the response. The most commonly used * delimiter is "/", which simulates a hierarchical organization similar to * a file system directory structure. */ private String delimiter; /** * Optional parameter indicating the maximum number of results to include in * the response. OSS might return fewer than this, but will not return * more. Even if maxKeys is not specified, OSS will limit the number * of results in the response. */ private Integer maxResults; /** * Optional parameter indicating the encoding method to be applied on the * response. An object key can contain any Unicode character; however, XML * 1.0 parser cannot parse some characters, such as characters with an ASCII * value from 0 to 10. For characters that are not supported in XML 1.0, you * can add this parameter to request that OSS encode the keys in the * response. */ private String encodingType; /** * Constructs a new {@link ListVersionsRequest} object. * The caller must populate * the fields before the request is executed. * * @see ListVersionsRequest#ListVersionsRequest(String, String, String, String, String, Integer) */ public ListVersionsRequest() {} /** * Constructs a new {@link ListVersionsRequest} object and initializes all required * and optional fields. * * @param bucketName * The name of the bucket whose versions are to be listed. * @param prefix * The prefix restricting what keys will be listed. * @param keyMarker * The key marker indicating where results should begin. * @param versionIdMarker * The version ID marker indicating where results should begin. * @param delimiter * The delimiter for condensing common prefixes in returned * results. * @param maxResults * The maximum number of results to return. * * @see ListVersionsRequest#ListVersionsRequest() */ public ListVersionsRequest(String bucketName, String prefix, String keyMarker, String versionIdMarker, String delimiter, Integer maxResults) { super(bucketName); setPrefix(prefix); setKeyMarker(keyMarker); setVersionIdMarker(versionIdMarker); setDelimiter(delimiter); setMaxResults(maxResults); } /** * Sets the name of the OSS bucket whose versions are to be listed. * Returns this {@link ListVersionsRequest}, enabling additional method * calls to be chained together. * * @param bucketName * The name of the OSS bucket whose versions are to be * listed. * * @return This {@link ListVersionsRequest}, enabling additional method * calls to be chained together. * * @see ListVersionsRequest#getBucketName() * @see ListVersionsRequest#setBucketName(String) */ public ListVersionsRequest withBucketName(String bucketName) { setBucketName(bucketName); return this; } /** * Gets the optional prefix parameter restricting the response to keys * that begin with the specified prefix. Use prefixes to separate a * bucket into different sets of keys, similar to how a file system organizes files * into directories. * * @return The optional prefix parameter restricting the response to keys * that begin with the specified prefix. * * @see ListVersionsRequest#setPrefix(String) * @see ListVersionsRequest#withPrefix(String) */ public String getPrefix() { return prefix; } /** * Sets the optional prefix parameter restricting the response to keys that * begin with the specified prefix. * * @param prefix * The optional prefix parameter restricting the response to keys * that begin with the specified prefix. * * @see ListVersionsRequest#getPrefix() * @see ListVersionsRequest#withPrefix(String) */ public void setPrefix(String prefix) { this.prefix = prefix; } /** * Sets the optional prefix parameter restricting the response to keys that * begin with the specified prefix. * Returns this {@link ListVersionsRequest}, enabling additional method * calls to be chained together. * * @param prefix * The optional prefix parameter restricting the response to keys * that begin with the specified prefix. * * @return This {@link ListVersionsRequest}, enabling additional method * calls to be chained together. * * @see ListVersionsRequest#getPrefix() * @see ListVersionsRequest#setPrefix(String) */ public ListVersionsRequest withPrefix(String prefix) { setPrefix(prefix); return this; } /** * Gets the optional keyMarker * parameter indicating where in the sorted * list of all versions in the specified bucket to begin returning results. * Results are always ordered first lexicographically (i.e. alphabetically) * and then from most recent version to least recent version. *

* If a keyMarker * is used without a version ID marker, results begin immediately after that * key's last version. When a keyMarker is used with a version ID marker, * results begin immediately after the version with the specified key and * version ID. *

* * @return The optional keyMarker parameter indicating where in the sorted * list of all versions in the specified bucket to begin returning * results. * * @see ListVersionsRequest#setKeyMarker(String) * @see ListVersionsRequest#withKeyMarker(String) */ public String getKeyMarker() { return keyMarker; } /** * Sets the optional keyMarker parameter indicating where in the sorted list * of all versions in the specified bucket to begin returning results. * * @param keyMarker * The optional keyMarker parameter indicating where in the * sorted list of all versions in the specified bucket to begin * returning results. * * @see ListVersionsRequest#getKeyMarker() * @see ListVersionsRequest#withKeyMarker(String) */ public void setKeyMarker(String keyMarker) { this.keyMarker = keyMarker; } /** * Sets the optional keyMarker parameter indicating where in the sorted list * of all versions in the specified bucket to begin returning results. * Returns this {@link ListVersionsRequest}, enabling additional method * calls to be chained together. * * @param keyMarker * The optional keyMarker parameter indicating where in the * sorted list of all versions in the specified bucket to begin * returning results. * * @return This {@link ListVersionsRequest}, enabling additional method * calls to be chained together. * * @see ListVersionsRequest#getKeyMarker() * @see ListVersionsRequest#setKeyMarker(String) */ public ListVersionsRequest withKeyMarker(String keyMarker) { setKeyMarker(keyMarker); return this; } /** * Gets the optional versionIdMarker parameter indicating where in the * sorted list of all versions in the specified bucket to begin returning * results. Results are always ordered first lexicographically (i.e. * alphabetically) and then from most recent version to least recent * version. *

* A key marker must be specified when specifying a versionIdMarker. * Results begin immediately after the version with the specified key and * version ID. *

* * @return The optional versionIdMarker parameter indicating where in the * sorted list of all versions in the specified bucket to begin * returning results. * * @see ListVersionsRequest#setVersionIdMarker(String) * @see ListVersionsRequest#withVersionIdMarker(String) */ public String getVersionIdMarker() { return versionIdMarker; } /** * Sets the optional versionIdMarker parameter indicating where in the * sorted list of all versions in the specified bucket to begin returning * results. * * @param versionIdMarker * The optional versionIdMarker parameter indicating where in the * sorted list of all versions in the specified bucket to begin * returning results. * * @see ListVersionsRequest#getVersionIdMarker() * @see ListVersionsRequest#withVersionIdMarker(String) */ public void setVersionIdMarker(String versionIdMarker) { this.versionIdMarker = versionIdMarker; } /** * Sets the optional versionIdMarker parameter indicating where in the * sorted list of all versions in the specified bucket to begin returning * results. * Returns this {@link ListVersionsRequest}, enabling additional method * calls to be chained together. * * @param versionIdMarker * The optional versionIdMarker parameter indicating where in the * sorted list of all versions in the specified bucket to begin * returning results. * * @return This {@link ListVersionsRequest}, enabling additional method * calls to be chained together. * * @see ListVersionsRequest#getVersionIdMarker() * @see ListVersionsRequest#setVersionIdMarker(String) */ public ListVersionsRequest withVersionIdMarker(String versionIdMarker) { setVersionIdMarker(versionIdMarker); return this; } /** * Gets the optional delimiter parameter that causes keys that contain * the same string between the prefix and the first occurrence of the * delimiter to be combined into a single result element in the * {@link VersionListing#getCommonPrefixes()} list. These combined keys * are not returned elsewhere in the response. *

* The most commonly used * delimiter is "/", which simulates a hierarchical organization similar to * a file system directory structure. *

* * @return The optional delimiter parameter that causes keys that contain * the same string between the prefix and the first occurrence of * the delimiter to be combined into a single result element in the * {@link VersionListing#getCommonPrefixes()} list. * * @see ListVersionsRequest#setDelimiter(String) * @see ListVersionsRequest#withDelimiter(String) */ public String getDelimiter() { return delimiter; } /** * Sets the optional delimiter parameter that causes keys that contain the * same string between the prefix and the first occurrence of the delimiter * to be combined into a single result element in the * {@link VersionListing#getCommonPrefixes()} list. * * @param delimiter * The optional delimiter parameter that causes keys that contain * the same string between the prefix and the first occurrence of * the delimiter to be combined into a single result element in * the {@link VersionListing#getCommonPrefixes()} list. * * @see ListVersionsRequest#getDelimiter() * @see ListVersionsRequest#withDelimiter(String) */ public void setDelimiter(String delimiter) { this.delimiter = delimiter; } /** * Sets the optional delimiter parameter that causes keys that contain the * same string between the prefix and the first occurrence of the delimiter * to be combined into a single result element in the * {@link VersionListing#getCommonPrefixes()} list. * Returns this {@link ListVersionsRequest}, enabling additional method * calls to be chained together. * * @param delimiter * The optional delimiter parameter that causes keys that contain * the same string between the prefix and the first occurrence of * the delimiter to be combined into a single result element in * the {@link VersionListing#getCommonPrefixes()} list. * * @return This {@link ListVersionsRequest}, enabling additional method * calls to be chained together. * * @see ListVersionsRequest#getDelimiter() * @see ListVersionsRequest#setDelimiter(String) */ public ListVersionsRequest withDelimiter(String delimiter) { setDelimiter(delimiter); return this; } /** * Gets the optional maxResults parameter indicating the maximum number of results * to include in the response. OSS might return fewer than this, but * will never return more. Even if maxResults is not specified, * OSS will * limit the number of results in the response. * * @return The optional maxResults parameter indicating the maximum number of results * * @see ListVersionsRequest#setMaxResults(Integer) * @see ListVersionsRequest#withMaxResults(Integer) */ public Integer getMaxResults() { return maxResults; } /** * Sets the optional maxResults parameter indicating the maximum number of results to * include in the response. * * @param maxResults * The optional maxResults parameter indicating the maximum number of * results to include in the response. * * @see ListVersionsRequest#getMaxResults() * @see ListVersionsRequest#withMaxResults(Integer) */ public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } /** * Sets the optional maxResults parameter indicating the maximum number of results to * include in the response. * Returns this {@link ListVersionsRequest}, enabling additional method * calls to be chained together. * * @param maxResults * The optional maxResults parameter indicating the maximum number of * results to include in the response. * * @return This {@link ListVersionsRequest}, enabling additional method * calls to be chained together. * * @see ListVersionsRequest#getMaxResults() * @see ListVersionsRequest#setMaxResults(Integer) */ public ListVersionsRequest withMaxResults(Integer maxResults) { setMaxResults(maxResults); return this; } /** * Gets the optional encodingType parameter indicating the * encoding method to be applied on the response. * * @return The encoding method to be applied on the response. */ public String getEncodingType() { return encodingType; } /** * Sets the optional encodingType parameter indicating the * encoding method to be applied on the response. An object key can contain * any Unicode character; however, XML 1.0 parser cannot parse some * characters, such as characters with an ASCII value from 0 to 10. For * characters that are not supported in XML 1.0, you can add this parameter * to request that OSS encode the keys in the response. * * @param encodingType * The encoding method to be applied on the response. Valid * values: null (not encoded) or "url". */ public void setEncodingType(String encodingType) { this.encodingType = encodingType; } /** * Sets the optional encodingType parameter indicating the * encoding method to be applied on the response. An object key can contain * any Unicode character; however, XML 1.0 parser cannot parse some * characters, such as characters with an ASCII value from 0 to 10. For * characters that are not supported in XML 1.0, you can add this parameter * to request that OSS encode the keys in the response. * Returns this {@link ListVersionsRequest}, enabling additional method calls * to be chained together. * * @param encodingType * The encoding method to be applied on the response. Valid * values: null (not encoded) or "url". * * @return The {@link ListVersionsRequest} instance. */ public ListVersionsRequest withEncodingType(String encodingType) { setEncodingType(encodingType); return this; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy