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

com.github.xiaojoin.activa.api.model.ActivaInstance Maven / Gradle / Ivy

package com.github.xiaojoin.activa.api.model;

import java.time.LocalDateTime;

/**
 * ActivaInstance
 */
public interface ActivaInstance {

    /**
     * ProcInstId
     * @return
     */
    String getProcInstId();

    /**
     * ProcDefId
     * @return
     */
    String getProcDefId();

    /**
     * StartUser
     * @return
     */
    String getStartUser();

    /**
     * StartTime
     * @return
     */
    LocalDateTime getStartTime();

    /**
     * EndTime
     * @return
     */
    LocalDateTime getEndTime();

    /**
     * Status
     * @return
     */
    String getStatus();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy