package org.signserver.common; public class OwnerInfo { private String channelName; private String cif; private String agreementType; public String getChannelName() { return channelName; } public void setChannelName(String channelName) { this.channelName = channelName; } public String getCif() { return cif; } public void setCif(String cif) { this.cif = cif; } public String getAgreementType() { return agreementType; } public void setAgreementType(String agreementType) { this.agreementType = agreementType; } }