io.legaldocml.akn.attribute.Source Maven / Gradle / Ivy
The newest version!
package io.legaldocml.akn.attribute;
import io.legaldocml.akn.AknObject;
import io.legaldocml.akn.type.AgentRef;
/**
* The attribute source links to the agent (person, organization) providing the specific annotation or markup.
*
* ```xml
*
*
*
* ```
*
* @author Jacques Militello
*/
public interface Source extends AknObject {
AgentRef getSource();
void setSource(AgentRef source);
}