代码搜索:Workflow
找到约 4,191 项符合「Workflow」的源代码
代码结果 4,191
www.eeworm.com/read/243359/4529395
properties opencms.properties
#
# Configuration of the driver manager
#################################################################################
driver.vfs=db
driver.project=db
driver.user=db
driver.workflow=db
drive
www.eeworm.com/read/232020/4706087
java workflowexception.java
package cn.com.iaspec.workflow.exception;
public class WorkflowException
extends Exception{
public WorkflowException(){
}
public WorkflowException(String message){
super(message)
www.eeworm.com/read/277826/4149764
cs inode.cs
using Iesi.Collections;
namespace NetBpm.Workflow.Definition
{
public interface INode : IDefinitionObject
{
IProcessBlock ProcessBlock { get; }
ISet ArrivingTransitions { get; }
ISet
www.eeworm.com/read/277826/4149765
cs startstateimpl.cs
using NetBpm.Util.Xml;
namespace NetBpm.Workflow.Definition.Impl
{
public class StartStateImpl : ActivityStateImpl, IStartState
{
public StartStateImpl()
{
}
public StartStateImp
www.eeworm.com/read/277826/4149814
cs organisationruntimeexception.cs
using System;
namespace NetBpm.Workflow.Organisation
{
/// is a RuntimeException that is thrown to signal any kind of exception while retrieving organisational information.
www.eeworm.com/read/277826/4149891
cs exceptionhandlingtypehelper.cs
using System;
namespace NetBpm.Workflow.Delegation
{
public enum ExceptionHandlingType
{
ROLLBACK = 1,
LOG = 2,
IGNORE = 3,
}
public class ExceptionHandlingTypeHelper
{
pub
www.eeworm.com/read/277826/4149959
cs abstractconfigurable.cs
using System.Collections;
namespace NetBpm.Workflow.Delegation
{
public class AbstractConfigurable : IConfigurable
{
private IDictionary _configuration = null;
public IDictionary GetCo
www.eeworm.com/read/277826/4149984
cs imessage.cs
using System;
namespace NetBpm.Workflow.Log
{
public interface IMessage : ILogDetail
{
//@portme to message after Message->IMassage
String MessageText { get; }
}
}
www.eeworm.com/read/277826/4150401
cs trivialassignmenthandler.cs
using System;
using NetBpm.Workflow.Delegation;
namespace NetBpm.Example.Delegate
{
public class TrivialAssignmentHandler : IAssignmentHandler
{
public String SelectActor(IAssignment
www.eeworm.com/read/277824/4150468
cs vsahandlertestcase.cs
using System;
using NUnit.Framework;
namespace DotNetTools.Workflow.Util.Vsa
{
public class VsaHandlerTestCase :TestCaseBase
{
public VsaHandlerTestCase()
{
}
[Test]
pub