io.legaldocml.akn.attribute.Actor Maven / Gradle / Ivy
The newest version!
package io.legaldocml.akn.attribute;
import io.legaldocml.akn.AknObject;
/**
* The attribute actor is used to identify the actor of a step of a workflow of the document. It is a reference to a
* TLCPerson or TLCOrganization element in the references section.
*
* ```xml
*
*
*
* ```
*
* @author Jacques Militello
*/
public interface Actor extends AknObject {
String getActor();
void setActor(String actor);
}