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

org.digidoc4j.ddoc.QualifyingProperties Maven / Gradle / Ivy

Go to download

DDoc4J is Java Library for validating DDOC documents. It's not recommended to use it directly but rather through DigiDoc4J's API.

The newest version!
package org.digidoc4j.ddoc;

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 - 2024 Weber Informatics LLC | Privacy Policy