io.legaldocml.akn.attribute.Agent Maven / Gradle / Ivy
package io.legaldocml.akn.attribute;
import io.legaldocml.akn.AknObject;
import io.legaldocml.akn.type.AgentRef;
/**
* The attribute by is used to identify the agent of an action. It is a reference to a TLCPerson or TLCOrganization
* element in the references section.
*
*
* <xsd:attributeGroup name="agent">
* <xsd:attribute name="by" type="agentRef" use="required"/>
* <xsd:attributeGroup>
*
*
* @author Jacques Militello
*/
public interface Agent extends AknObject {
/**
* Attribute name.
*/
String ATTRIBUTE = "by";
AgentRef getBy();
void setBy(AgentRef by);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy