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

com.aliyuncs.cas.model.v20200630.ListRevokeCertificateResponse 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

There is a newer version: 20180713_0114
Show 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.cas.model.v20200630;

import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cas.transform.v20200630.ListRevokeCertificateResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;

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

	private Integer currentPage;

	private Integer pageCount;

	private Integer showSize;

	private Long totalCount;

	private String requestId;

	private List certificateList;

	public Integer getCurrentPage() {
		return this.currentPage;
	}

	public void setCurrentPage(Integer currentPage) {
		this.currentPage = currentPage;
	}

	public Integer getPageCount() {
		return this.pageCount;
	}

	public void setPageCount(Integer pageCount) {
		this.pageCount = pageCount;
	}

	public Integer getShowSize() {
		return this.showSize;
	}

	public void setShowSize(Integer showSize) {
		this.showSize = showSize;
	}

	public Long getTotalCount() {
		return this.totalCount;
	}

	public void setTotalCount(Long totalCount) {
		this.totalCount = totalCount;
	}

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

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

	public List getCertificateList() {
		return this.certificateList;
	}

	public void setCertificateList(List certificateList) {
		this.certificateList = certificateList;
	}

	public static class Certificate {

		private String revokeDate;

		private String identifier;

		private String serialNumber;

		private String subjectDN;

		private String commonName;

		private String organizationUnit;

		private String organization;

		private String locality;

		private String state;

		private String countryCode;

		private String sans;

		private String status;

		private String beforeDate;

		private String afterDate;

		private String algorithm;

		private Integer keySize;

		private String signAlgorithm;

		private String certificateType;

		private String parentIdentifier;

		private String sha2;

		private String md5;

		public String getRevokeDate() {
			return this.revokeDate;
		}

		public void setRevokeDate(String revokeDate) {
			this.revokeDate = revokeDate;
		}

		public String getIdentifier() {
			return this.identifier;
		}

		public void setIdentifier(String identifier) {
			this.identifier = identifier;
		}

		public String getSerialNumber() {
			return this.serialNumber;
		}

		public void setSerialNumber(String serialNumber) {
			this.serialNumber = serialNumber;
		}

		public String getSubjectDN() {
			return this.subjectDN;
		}

		public void setSubjectDN(String subjectDN) {
			this.subjectDN = subjectDN;
		}

		public String getCommonName() {
			return this.commonName;
		}

		public void setCommonName(String commonName) {
			this.commonName = commonName;
		}

		public String getOrganizationUnit() {
			return this.organizationUnit;
		}

		public void setOrganizationUnit(String organizationUnit) {
			this.organizationUnit = organizationUnit;
		}

		public String getOrganization() {
			return this.organization;
		}

		public void setOrganization(String organization) {
			this.organization = organization;
		}

		public String getLocality() {
			return this.locality;
		}

		public void setLocality(String locality) {
			this.locality = locality;
		}

		public String getState() {
			return this.state;
		}

		public void setState(String state) {
			this.state = state;
		}

		public String getCountryCode() {
			return this.countryCode;
		}

		public void setCountryCode(String countryCode) {
			this.countryCode = countryCode;
		}

		public String getSans() {
			return this.sans;
		}

		public void setSans(String sans) {
			this.sans = sans;
		}

		public String getStatus() {
			return this.status;
		}

		public void setStatus(String status) {
			this.status = status;
		}

		public String getBeforeDate() {
			return this.beforeDate;
		}

		public void setBeforeDate(String beforeDate) {
			this.beforeDate = beforeDate;
		}

		public String getAfterDate() {
			return this.afterDate;
		}

		public void setAfterDate(String afterDate) {
			this.afterDate = afterDate;
		}

		public String getAlgorithm() {
			return this.algorithm;
		}

		public void setAlgorithm(String algorithm) {
			this.algorithm = algorithm;
		}

		public Integer getKeySize() {
			return this.keySize;
		}

		public void setKeySize(Integer keySize) {
			this.keySize = keySize;
		}

		public String getSignAlgorithm() {
			return this.signAlgorithm;
		}

		public void setSignAlgorithm(String signAlgorithm) {
			this.signAlgorithm = signAlgorithm;
		}

		public String getCertificateType() {
			return this.certificateType;
		}

		public void setCertificateType(String certificateType) {
			this.certificateType = certificateType;
		}

		public String getParentIdentifier() {
			return this.parentIdentifier;
		}

		public void setParentIdentifier(String parentIdentifier) {
			this.parentIdentifier = parentIdentifier;
		}

		public String getSha2() {
			return this.sha2;
		}

		public void setSha2(String sha2) {
			this.sha2 = sha2;
		}

		public String getMd5() {
			return this.md5;
		}

		public void setMd5(String md5) {
			this.md5 = md5;
		}
	}

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy