| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
package org.kuali.rice.kew.api; |
| 17 | |
|
| 18 | |
import java.util.List; |
| 19 | |
import java.util.Set; |
| 20 | |
|
| 21 | |
import org.joda.time.DateTime; |
| 22 | |
import org.kuali.rice.kew.api.action.ActionRequest; |
| 23 | |
import org.kuali.rice.kew.api.action.ActionRequestType; |
| 24 | |
import org.kuali.rice.kew.api.action.ActionTaken; |
| 25 | |
import org.kuali.rice.kew.api.action.ActionType; |
| 26 | |
import org.kuali.rice.kew.api.action.AdHocRevoke; |
| 27 | |
import org.kuali.rice.kew.api.action.MovePoint; |
| 28 | |
import org.kuali.rice.kew.api.action.RequestedActions; |
| 29 | |
import org.kuali.rice.kew.api.action.ReturnPoint; |
| 30 | |
import org.kuali.rice.kew.api.action.ValidActions; |
| 31 | |
import org.kuali.rice.kew.api.document.Document; |
| 32 | |
import org.kuali.rice.kew.api.document.DocumentContent; |
| 33 | |
import org.kuali.rice.kew.api.document.DocumentContentUpdate; |
| 34 | |
import org.kuali.rice.kew.api.document.DocumentContract; |
| 35 | |
import org.kuali.rice.kew.api.document.DocumentDetail; |
| 36 | |
import org.kuali.rice.kew.api.document.DocumentStatus; |
| 37 | |
import org.kuali.rice.kew.api.document.attribute.WorkflowAttributeDefinition; |
| 38 | |
import org.kuali.rice.kew.api.document.attribute.WorkflowAttributeValidationError; |
| 39 | |
import org.kuali.rice.kew.api.document.node.RouteNodeInstance; |
| 40 | |
|
| 41 | |
|
| 42 | |
|
| 43 | |
|
| 44 | |
|
| 45 | |
|
| 46 | |
|
| 47 | |
|
| 48 | |
|
| 49 | |
public interface WorkflowDocument extends DocumentContract { |
| 50 | |
|
| 51 | |
String getDocumentId(); |
| 52 | |
|
| 53 | |
Document getDocument(); |
| 54 | |
|
| 55 | |
DocumentContent getDocumentContent(); |
| 56 | |
|
| 57 | |
String getApplicationContent(); |
| 58 | |
|
| 59 | |
void setApplicationContent(String applicationContent); |
| 60 | |
|
| 61 | |
public void setAttributeContent(String attributeContent); |
| 62 | |
|
| 63 | |
void clearAttributeContent(); |
| 64 | |
|
| 65 | |
String getAttributeContent(); |
| 66 | |
|
| 67 | |
void addAttributeDefinition(WorkflowAttributeDefinition attributeDefinition); |
| 68 | |
|
| 69 | |
void removeAttributeDefinition( |
| 70 | |
WorkflowAttributeDefinition attributeDefinition); |
| 71 | |
|
| 72 | |
void clearAttributeDefinitions(); |
| 73 | |
|
| 74 | |
List<WorkflowAttributeDefinition> getAttributeDefinitions(); |
| 75 | |
|
| 76 | |
public void setSearchableContent(String searchableContent); |
| 77 | |
|
| 78 | |
void addSearchableDefinition( |
| 79 | |
WorkflowAttributeDefinition searchableDefinition); |
| 80 | |
|
| 81 | |
void removeSearchableDefinition( |
| 82 | |
WorkflowAttributeDefinition searchableDefinition); |
| 83 | |
|
| 84 | |
void clearSearchableDefinitions(); |
| 85 | |
|
| 86 | |
void clearSearchableContent(); |
| 87 | |
|
| 88 | |
List<WorkflowAttributeDefinition> getSearchableDefinitions(); |
| 89 | |
|
| 90 | |
List<WorkflowAttributeValidationError> validateAttributeDefinition( |
| 91 | |
WorkflowAttributeDefinition attributeDefinition); |
| 92 | |
|
| 93 | |
List<ActionRequest> getRootActionRequests(); |
| 94 | |
|
| 95 | |
List<ActionTaken> getActionsTaken(); |
| 96 | |
|
| 97 | |
void setApplicationDocumentId(String applicationDocumentId); |
| 98 | |
|
| 99 | |
String getApplicationDocumentId(); |
| 100 | |
|
| 101 | |
DateTime getDateCreated(); |
| 102 | |
|
| 103 | |
String getTitle(); |
| 104 | |
|
| 105 | |
ValidActions getValidActions(); |
| 106 | |
|
| 107 | |
RequestedActions getRequestedActions(); |
| 108 | |
|
| 109 | |
void saveDocument(String annotation); |
| 110 | |
|
| 111 | |
void route(String annotation); |
| 112 | |
|
| 113 | |
void disapprove(String annotation); |
| 114 | |
|
| 115 | |
void approve(String annotation); |
| 116 | |
|
| 117 | |
void cancel(String annotation); |
| 118 | |
|
| 119 | |
void blanketApprove(String annotation); |
| 120 | |
|
| 121 | |
void blanketApprove(String annotation, String... nodeNames); |
| 122 | |
|
| 123 | |
void saveDocumentData(); |
| 124 | |
|
| 125 | |
void setApplicationDocumentStatus(String applicationDocumentStatus); |
| 126 | |
|
| 127 | |
void acknowledge(String annotation); |
| 128 | |
|
| 129 | |
void fyi(String annotation); |
| 130 | |
|
| 131 | |
void fyi(); |
| 132 | |
|
| 133 | |
|
| 134 | |
|
| 135 | |
|
| 136 | |
|
| 137 | |
void delete(); |
| 138 | |
|
| 139 | |
void refresh(); |
| 140 | |
|
| 141 | |
void adHocToPrincipal(ActionRequestType actionRequested, String annotation, |
| 142 | |
String targetPrincipalId, String responsibilityDescription, |
| 143 | |
boolean forceAction); |
| 144 | |
|
| 145 | |
void adHocToPrincipal(ActionRequestType actionRequested, String nodeName, |
| 146 | |
String annotation, String targetPrincipalId, |
| 147 | |
String responsibilityDescription, boolean forceAction); |
| 148 | |
|
| 149 | |
void adHocToPrincipal(ActionRequestType actionRequested, String nodeName, |
| 150 | |
String annotation, String targetPrincipalId, |
| 151 | |
String responsibilityDescription, boolean forceAction, |
| 152 | |
String requestLabel); |
| 153 | |
|
| 154 | |
void adHocToGroup(ActionRequestType actionRequested, String annotation, |
| 155 | |
String targetGroupId, String responsibilityDescription, |
| 156 | |
boolean forceAction); |
| 157 | |
|
| 158 | |
void adHocToGroup(ActionRequestType actionRequested, String nodeName, |
| 159 | |
String annotation, String targetGroupId, |
| 160 | |
String responsibilityDescription, boolean forceAction); |
| 161 | |
|
| 162 | |
void adHocToGroup(ActionRequestType actionRequested, String nodeName, |
| 163 | |
String annotation, String targetGroupId, |
| 164 | |
String responsibilityDescription, boolean forceAction, |
| 165 | |
String requestLabel); |
| 166 | |
|
| 167 | |
void revokeAdHocRequestById(String actionRequestId, String annotation); |
| 168 | |
|
| 169 | |
void revokeAdHocRequests(AdHocRevoke revoke, String annotation); |
| 170 | |
|
| 171 | |
void revokeAllAdHocRequests(String annotation); |
| 172 | |
|
| 173 | |
void setTitle(String title); |
| 174 | |
|
| 175 | |
String getDocumentTypeName(); |
| 176 | |
|
| 177 | |
boolean isCompletionRequested(); |
| 178 | |
|
| 179 | |
boolean isApprovalRequested(); |
| 180 | |
|
| 181 | |
boolean isAcknowledgeRequested(); |
| 182 | |
|
| 183 | |
boolean isFYIRequested(); |
| 184 | |
|
| 185 | |
boolean isBlanketApproveCapable(); |
| 186 | |
|
| 187 | |
boolean isRouteCapable(); |
| 188 | |
|
| 189 | |
boolean isValidAction(ActionType actionType); |
| 190 | |
|
| 191 | |
void superUserBlanketApprove(String annotation); |
| 192 | |
|
| 193 | |
void superUserNodeApprove(String nodeName, String annotation); |
| 194 | |
|
| 195 | |
void superUserTakeRequestedAction(String actionRequestId, String annotation); |
| 196 | |
|
| 197 | |
void superUserDisapprove(String annotation); |
| 198 | |
|
| 199 | |
void superUserCancel(String annotation); |
| 200 | |
|
| 201 | |
void superUserReturnToPreviousNode(ReturnPoint returnPoint, |
| 202 | |
String annotation); |
| 203 | |
|
| 204 | |
void complete(String annotation); |
| 205 | |
|
| 206 | |
void logAnnotation(String annotation); |
| 207 | |
|
| 208 | |
DocumentStatus getStatus(); |
| 209 | |
|
| 210 | |
boolean checkStatus(DocumentStatus status); |
| 211 | |
|
| 212 | |
|
| 213 | |
|
| 214 | |
|
| 215 | |
|
| 216 | |
|
| 217 | |
boolean isInitiated(); |
| 218 | |
|
| 219 | |
|
| 220 | |
|
| 221 | |
|
| 222 | |
|
| 223 | |
|
| 224 | |
boolean isSaved(); |
| 225 | |
|
| 226 | |
|
| 227 | |
|
| 228 | |
|
| 229 | |
|
| 230 | |
|
| 231 | |
boolean isEnroute(); |
| 232 | |
|
| 233 | |
|
| 234 | |
|
| 235 | |
|
| 236 | |
|
| 237 | |
|
| 238 | |
boolean isException(); |
| 239 | |
|
| 240 | |
|
| 241 | |
|
| 242 | |
|
| 243 | |
|
| 244 | |
|
| 245 | |
boolean isCanceled(); |
| 246 | |
|
| 247 | |
|
| 248 | |
|
| 249 | |
|
| 250 | |
|
| 251 | |
|
| 252 | |
boolean isDisapproved(); |
| 253 | |
|
| 254 | |
|
| 255 | |
|
| 256 | |
|
| 257 | |
|
| 258 | |
|
| 259 | |
boolean isApproved(); |
| 260 | |
|
| 261 | |
|
| 262 | |
|
| 263 | |
|
| 264 | |
|
| 265 | |
|
| 266 | |
boolean isProcessed(); |
| 267 | |
|
| 268 | |
|
| 269 | |
|
| 270 | |
|
| 271 | |
|
| 272 | |
|
| 273 | |
boolean isFinal(); |
| 274 | |
|
| 275 | |
|
| 276 | |
|
| 277 | |
|
| 278 | |
|
| 279 | |
|
| 280 | |
String getPrincipalId(); |
| 281 | |
|
| 282 | |
void switchPrincipal(String principalId); |
| 283 | |
|
| 284 | |
void takeGroupAuthority(String annotation, String groupId); |
| 285 | |
|
| 286 | |
void releaseGroupAuthority(String annotation, String groupId); |
| 287 | |
|
| 288 | |
Set<String> getNodeNames(); |
| 289 | |
|
| 290 | |
void returnToPreviousNode(String nodeName, String annotation); |
| 291 | |
|
| 292 | |
void returnToPreviousNode(ReturnPoint returnPoint, String annotation); |
| 293 | |
|
| 294 | |
void move(MovePoint movePoint, String annotation); |
| 295 | |
|
| 296 | |
List<RouteNodeInstance> getActiveRouteNodeInstances(); |
| 297 | |
|
| 298 | |
List<RouteNodeInstance> getRouteNodeInstances(); |
| 299 | |
|
| 300 | |
List<String> getPreviousNodeNames(); |
| 301 | |
|
| 302 | |
DocumentDetail getDocumentDetail(); |
| 303 | |
|
| 304 | |
void updateDocumentContent(DocumentContentUpdate documentContentUpdate); |
| 305 | |
|
| 306 | |
void placeInExceptionRouting(String annotation); |
| 307 | |
|
| 308 | |
void setVariable(String name, String value); |
| 309 | |
|
| 310 | |
String getVariableValue(String name); |
| 311 | |
|
| 312 | |
void setReceiveFutureRequests(); |
| 313 | |
|
| 314 | |
void setDoNotReceiveFutureRequests(); |
| 315 | |
|
| 316 | |
void setClearFutureRequests(); |
| 317 | |
|
| 318 | |
String getReceiveFutureRequestsValue(); |
| 319 | |
|
| 320 | |
String getDoNotReceiveFutureRequestsValue(); |
| 321 | |
|
| 322 | |
String getClearFutureRequestsValue(); |
| 323 | |
|
| 324 | |
} |