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

com.aliyuncs.ens.model.v20171110.ListObjectsResponse Maven / Gradle / Ivy

Go to download

Aliyun Open API SDK for Java Copyright (C) Alibaba Cloud Computing All rights reserved. 版权所有 (C)阿里云计算有限公司 http://www.aliyun.com

The newest version!
/*
 * Licensed 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.aliyuncs.ens.model.v20171110;

import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ens.transform.v20171110.ListObjectsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;

/**
 * @author auto create
 * @version 
 */
public class ListObjectsResponse extends AcsResponse {

	private String nextContinuationToken;

	private String continuationToken;

	private String delimiter;

	private String encodingType;

	private String prefix;

	private String marker;

	private String bucketName;

	private Boolean isTruncated;

	private Long keyCount;

	private String nextMarker;

	private Long maxKeys;

	private String requestId;

	private List contents;

	private List commonPrefixInfos;

	private List commonPrefixes;

	public String getNextContinuationToken() {
		return this.nextContinuationToken;
	}

	public void setNextContinuationToken(String nextContinuationToken) {
		this.nextContinuationToken = nextContinuationToken;
	}

	public String getContinuationToken() {
		return this.continuationToken;
	}

	public void setContinuationToken(String continuationToken) {
		this.continuationToken = continuationToken;
	}

	public String getDelimiter() {
		return this.delimiter;
	}

	public void setDelimiter(String delimiter) {
		this.delimiter = delimiter;
	}

	public String getEncodingType() {
		return this.encodingType;
	}

	public void setEncodingType(String encodingType) {
		this.encodingType = encodingType;
	}

	public String getPrefix() {
		return this.prefix;
	}

	public void setPrefix(String prefix) {
		this.prefix = prefix;
	}

	public String getMarker() {
		return this.marker;
	}

	public void setMarker(String marker) {
		this.marker = marker;
	}

	public String getBucketName() {
		return this.bucketName;
	}

	public void setBucketName(String bucketName) {
		this.bucketName = bucketName;
	}

	public Boolean getIsTruncated() {
		return this.isTruncated;
	}

	public void setIsTruncated(Boolean isTruncated) {
		this.isTruncated = isTruncated;
	}

	public Long getKeyCount() {
		return this.keyCount;
	}

	public void setKeyCount(Long keyCount) {
		this.keyCount = keyCount;
	}

	public String getNextMarker() {
		return this.nextMarker;
	}

	public void setNextMarker(String nextMarker) {
		this.nextMarker = nextMarker;
	}

	public Long getMaxKeys() {
		return this.maxKeys;
	}

	public void setMaxKeys(Long maxKeys) {
		this.maxKeys = maxKeys;
	}

	public String getRequestId() {
		return this.requestId;
	}

	public void setRequestId(String requestId) {
		this.requestId = requestId;
	}

	public List getContents() {
		return this.contents;
	}

	public void setContents(List contents) {
		this.contents = contents;
	}

	public List getCommonPrefixInfos() {
		return this.commonPrefixInfos;
	}

	public void setCommonPrefixInfos(List commonPrefixInfos) {
		this.commonPrefixInfos = commonPrefixInfos;
	}

	public List getCommonPrefixes() {
		return this.commonPrefixes;
	}

	public void setCommonPrefixes(List commonPrefixes) {
		this.commonPrefixes = commonPrefixes;
	}

	public static class Content {

		private String key;

		private String lastModified;

		private String storageClass;

		private String eTag;

		private Long size;

		public String getKey() {
			return this.key;
		}

		public void setKey(String key) {
			this.key = key;
		}

		public String getLastModified() {
			return this.lastModified;
		}

		public void setLastModified(String lastModified) {
			this.lastModified = lastModified;
		}

		public String getStorageClass() {
			return this.storageClass;
		}

		public void setStorageClass(String storageClass) {
			this.storageClass = storageClass;
		}

		public String getETag() {
			return this.eTag;
		}

		public void setETag(String eTag) {
			this.eTag = eTag;
		}

		public Long getSize() {
			return this.size;
		}

		public void setSize(Long size) {
			this.size = size;
		}
	}

	public static class CommonPrefixInfo {

		private String prefix;

		private String lastModified;

		public String getPrefix() {
			return this.prefix;
		}

		public void setPrefix(String prefix) {
			this.prefix = prefix;
		}

		public String getLastModified() {
			return this.lastModified;
		}

		public void setLastModified(String lastModified) {
			this.lastModified = lastModified;
		}
	}

	@Override
	public ListObjectsResponse getInstance(UnmarshallerContext context) {
		return	ListObjectsResponseUnmarshaller.unmarshall(this, context);
	}

	@Override
	public boolean checkShowJsonItemName() {
		return false;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy