All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.legaldocml.akn.attribute.MappingAtts Maven / Gradle / Ivy

The newest version!
package io.legaldocml.akn.attribute;

import io.legaldocml.akn.type.EidRef;
import io.legaldocml.akn.type.EventRefRef;
import io.legaldocml.akn.type.WidRef;

/**
 * The mappingAtts attributes represent the reference to the permanent wId (attribute original) of a structure, and to
 * the eId (attribute current) such structure had during the time interval included between an initial temporalGroup
 * (attribute start) and a final temporalGroup (attribute end).
 *
 * ```xml
 * 
 *   
 *   
 *   
 *   
 * 
 * ```
 *
 * @author Jacques Militello
 */
public interface MappingAtts extends Role, Agent {

    WidRef getOriginal();

    void setOriginal(WidRef original);

    EidRef getCurrent();

    void setCurrent(EidRef current);

    EventRefRef getStart();

    void setStart(EventRefRef start);

    EventRefRef getEnd();

    void setEnd(EventRefRef end);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy