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

eu.europa.esig.dss.diagnostic.TrustedServiceWrapper Maven / Gradle / Ivy

There is a newer version: 6.0.d4j.2
Show newest version
/**
 * DSS - Digital Signature Services
 * Copyright (C) 2015 European Commission, provided under the CEF programme
 * 
 * This file is part of the "DSS - Digital Signature Services" project.
 * 
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 * 
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */
package eu.europa.esig.dss.diagnostic;

import java.util.Date;
import java.util.List;

import eu.europa.esig.dss.diagnostic.jaxb.XmlTrustedList;

public class TrustedServiceWrapper {

	private XmlTrustedList trustedList;
	private XmlTrustedList lotl;
	private List tspNames;
	private List tspTradeNames;
	private CertificateWrapper serviceDigitalIdentifier;
	private List serviceNames;
	private String countryCode;
	private String status;
	private String type;
	private Date startDate;
	private Date endDate;
	private List capturedQualifiers;
	private List additionalServiceInfos;

	public XmlTrustedList getTrustedList() {
		return trustedList;
	}

	public void setTrustedList(XmlTrustedList trustedList) {
		this.trustedList = trustedList;
	}

	public XmlTrustedList getListOfTrustedLists() {
		return lotl;
	}

	public void setListOfTrustedLists(XmlTrustedList lotl) {
		this.lotl = lotl;
	}

	public List getTspNames() {
		return tspNames;
	}

	public void setTspNames(List tspNames) {
		this.tspNames = tspNames;
	}

	public List getTspTradeNames() {
		return tspTradeNames;
	}

	public void setTspTradeNames(List tspTradeNames) {
		this.tspTradeNames = tspTradeNames;
	}

	public CertificateWrapper getServiceDigitalIdentifier() {
		return serviceDigitalIdentifier;
	}

	public void setServiceDigitalIdentifier(CertificateWrapper serviceDigitalIdentifier) {
		this.serviceDigitalIdentifier = serviceDigitalIdentifier;
	}

	public List getServiceNames() {
		return serviceNames;
	}

	public void setServiceNames(List serviceNames) {
		this.serviceNames = serviceNames;
	}

	public String getCountryCode() {
		return countryCode;
	}

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

	public String getStatus() {
		return status;
	}

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

	public String getType() {
		return type;
	}

	public void setType(String type) {
		this.type = type;
	}

	public Date getStartDate() {
		return startDate;
	}

	public void setStartDate(Date startDate) {
		this.startDate = startDate;
	}

	public Date getEndDate() {
		return endDate;
	}

	public void setEndDate(Date endDate) {
		this.endDate = endDate;
	}

	public List getCapturedQualifiers() {
		return capturedQualifiers;
	}

	public void setCapturedQualifiers(List capturedQualifiers) {
		this.capturedQualifiers = capturedQualifiers;
	}

	public List getAdditionalServiceInfos() {
		return additionalServiceInfos;
	}

	public void setAdditionalServiceInfos(List additionalServiceInfos) {
		this.additionalServiceInfos = additionalServiceInfos;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy