org.xipki.ca.gateway.conf.CaNameSignerConf Maven / Gradle / Ivy
// Copyright (c) 2013-2023 xipki. All rights reserved.
// License Apache License 2.0
package org.xipki.ca.gateway.conf;
import java.util.List;
/**
*
* @author Lijun Liao (xipki)
* @since 6.0.0
*/
public class CaNameSignerConf {
private List names;
private SignerConf signer;
public List getNames() {
return names;
}
public void setNames(List names) {
this.names = names;
}
public SignerConf getSigner() {
return signer;
}
public void setSigner(SignerConf signer) {
this.signer = signer;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy