io.legaldocml.akn.attribute.Authoritative Maven / Gradle / Ivy
The newest version!
package io.legaldocml.akn.attribute;
import io.legaldocml.akn.AknObject;
/**
* This attribute specifies whether the translation is authoritative or not.
* ```xml
*
*
*
* ```
* @author Jacques Militello
*/
public interface Authoritative extends AknObject {
Boolean getAuthoritative();
void setAuthoritative(Boolean authoritative);
}