io.legaldocml.akn.attribute.LawyerAtts Maven / Gradle / Ivy
The newest version!
package io.legaldocml.akn.attribute;
import io.legaldocml.akn.type.AgentRef;
/**
* The attributes in lawyerAtts are used in the inline element lawyer to identify representation aspects of lawyers. In
* particular, attribute 'as' identifies his/her role, attribute 'for' identifies which party it represents, and
* attribute 'empoweredBy' identifies another lawyer, if any, this lawyer received the power delegation of power..
*
* ```xml
*
*
*
*
*
* ```
*
* @author Jacques Militello
*/
public interface LawyerAtts extends Role {
AgentRef getFor();
void setFor(AgentRef for_);
AgentRef getEmpoweredBy();
void setEmpoweredBy(AgentRef empoweredBy);
}