InboxItem.java 597 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  aQute.bnd.annotation.ProviderType
 */
package com.adobe.granite.workflow.exec;

import aQute.bnd.annotation.ProviderType;
import com.adobe.granite.workflow.exec.Status;
import java.util.Date;

@ProviderType
public interface InboxItem {
    public String getId();

    public String getCurrentAssignee();

    public Date getTimeStarted();

    public Date getTimeEnded();

    public Status getStatus();

    public String getItemType();

    public String getItemSubType();

    public String getContentPath();
}