workflowentry.java

来自「Java编译osworkflow工作流系统的安装和源代码」· Java 代码 · 共 42 行

JAVA
42
字号
/* * Copyright (c) 2002-2003 by OpenSymphony * All rights reserved. */package com.opensymphony.workflow.spi;/** * Interface for a workflow entry. * * @author <a href="mailto:plightbo@hotmail.com">Pat Lightbody</a> */public interface WorkflowEntry {    //~ Static fields/initializers /////////////////////////////////////////////    public static final int CREATED = 0;    public static final int ACTIVATED = 1;    public static final int SUSPENDED = 2;    public static final int KILLED = 3;    public static final int COMPLETED = 4;    public static final int UNKNOWN = -1;    //~ Methods ////////////////////////////////////////////////////////////////    /**     * Returns the unique ID of the workflow entry.     */    public long getId();    /**     * Returns true if the workflow entry has been initialized.     */    public boolean isInitialized();    public int getState();    /**     * Returns the name of the workflow that this entry is an instance of.     */    public String getWorkflowName();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?