![JAR search and dependency download from the Maven repository](/logo.png)
ee.sk.digidoc.QualifyingProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdigidoc Show documentation
Show all versions of jdigidoc Show documentation
A Java libray for manipulating Estonian digital signature container files DDOC and BDOC. Note that this library is deprecated. It is recommended to use the new DigiDoc4j library at https://github.com/open-eid/digidoc4j
The newest version!
package ee.sk.digidoc;
import java.io.Serializable;
/**
* Models the QualifyingProperties element of
* an BDOC.
* @author Kalev Suik
* @version 1.0
*/
public class QualifyingProperties implements Serializable
{
private static final long serialVersionUID = 1L;
private String m_Target;
public String getTarget() {
return m_Target;
}
public void setTarget(String target) {
m_Target = target;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy