Package com.saperion.intf.wf
Interface ContextInfo
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
ContextInfoImpl
public interface ContextInfo extends java.io.SerializableContext info interface.- Author:
- rbo
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetActivity()java.lang.StringgetActor()java.lang.StringgetAlias()java.lang.StringgetAttachmentUID()intgetCommand()java.lang.StringgetComment()java.util.DategetDate()com.saperion.jni.SaJNIWfContextgetJNIContext()Converts to JNI context.java.lang.StringgetProcess()intgetTransition()intgetWorkingTime()booleanisSync()booleanisTrusted()voidsetActivity(int activity)voidsetActor(java.lang.String actor)voidsetAlias(java.lang.String alias)voidsetAttachmentUID(java.lang.String uid)voidsetCommand(SaWFConstants.CommandId command)voidsetComment(java.lang.String comment)voidsetDate(java.util.Date date)voidsetProcess(java.lang.String process)voidsetSync(boolean sync)voidsetTransition(int transition)voidsetTrusted(boolean trusted)voidsetWorkingTime(int workingTime)
-
-
-
Method Detail
-
getJNIContext
com.saperion.jni.SaJNIWfContext getJNIContext()
Converts to JNI context.- Returns:
- JNI Context
-
getProcess
java.lang.String getProcess()
- Returns:
- the process
-
setProcess
void setProcess(java.lang.String process)
- Parameters:
process- the process to set
-
getCommand
int getCommand()
- Returns:
- the command
-
setCommand
void setCommand(SaWFConstants.CommandId command)
- Parameters:
command- the command to set
-
getTransition
int getTransition()
- Returns:
- the transition
-
setTransition
void setTransition(int transition)
- Parameters:
transition- the transition to set
-
getActivity
int getActivity()
- Returns:
- the activity
-
setActivity
void setActivity(int activity)
- Parameters:
activity- the activity to set
-
getActor
java.lang.String getActor()
- Returns:
- the actor
-
setActor
void setActor(java.lang.String actor)
- Parameters:
actor- the actor to set
-
getAlias
java.lang.String getAlias()
- Returns:
- the alias
-
setAlias
void setAlias(java.lang.String alias)
- Parameters:
alias- the alias to set
-
getComment
java.lang.String getComment()
- Returns:
- the comment
-
setComment
void setComment(java.lang.String comment)
- Parameters:
comment- the comment to set
-
getDate
java.util.Date getDate()
- Returns:
- the date
-
setDate
void setDate(java.util.Date date)
- Parameters:
date- the date to set
-
getWorkingTime
int getWorkingTime()
- Returns:
- the workingTime
-
setWorkingTime
void setWorkingTime(int workingTime)
- Parameters:
workingTime- the workingTime to set
-
isSync
boolean isSync()
- Returns:
- the sync
-
setSync
void setSync(boolean sync)
- Parameters:
sync- the sync to set
-
isTrusted
boolean isTrusted()
- Returns:
- the trusted
-
setTrusted
void setTrusted(boolean trusted)
- Parameters:
trusted- the trusted to set
-
getAttachmentUID
java.lang.String getAttachmentUID()
- Returns:
- Attachment UID (a HDOC)
-
setAttachmentUID
void setAttachmentUID(java.lang.String uid)
- Parameters:
uid- Attachment UID (a HDOC)
-
-