Module: Wf

Defined in:
app/models/wf/arc.rb,
lib/wf.rb,
lib/wf/engine.rb,
lib/wf/version.rb,
app/models/wf/case.rb,
app/models/wf/form.rb,
app/models/wf/lola.rb,
app/models/wf/user.rb,
app/models/wf/entry.rb,
app/models/wf/field.rb,
app/models/wf/group.rb,
app/models/wf/guard.rb,
app/models/wf/party.rb,
app/models/wf/place.rb,
app/models/wf/token.rb,
app/models/wf/comment.rb,
app/models/wf/workflow.rb,
app/models/wf/workitem.rb,
app/models/wf/transition.rb,
app/models/wf/demo_target.rb,
app/models/wf/field_value.rb,
app/helpers/wf/arcs_helper.rb,
app/helpers/wf/cases_helper.rb,
app/helpers/wf/forms_helper.rb,
app/jobs/wf/application_job.rb,
app/models/wf/acts_as_party.rb,
app/helpers/wf/fields_helper.rb,
app/helpers/wf/guards_helper.rb,
app/helpers/wf/places_helper.rb,
app/models/wf/case_assignment.rb,
app/helpers/wf/comments_helper.rb,
app/helpers/wf/workflows_helper.rb,
app/helpers/wf/workitems_helper.rb,
app/models/wf/application_record.rb,
app/helpers/wf/application_helper.rb,
app/helpers/wf/transitions_helper.rb,
app/mailers/wf/application_mailer.rb,
app/models/wf/workitem_assignment.rb,
app/controllers/wf/arcs_controller.rb,
app/controllers/wf/cases_controller.rb,
app/controllers/wf/forms_controller.rb,
app/jobs/wf/fire_timed_workitem_job.rb,
app/controllers/wf/fields_controller.rb,
app/controllers/wf/guards_controller.rb,
app/controllers/wf/places_controller.rb,
app/controllers/wf/comments_controller.rb,
app/controllers/wf/workflows_controller.rb,
app/controllers/wf/workitems_controller.rb,
app/helpers/wf/static_assignments_helper.rb,
app/controllers/wf/application_controller.rb,
app/controllers/wf/transitions_controller.rb,
app/helpers/wf/workitem_assignments_helper.rb,
app/models/wf/transition_static_assignment.rb,
app/models/wf/multiple_instances/all_finish.rb,
app/controllers/wf/static_assignments_controller.rb,
app/controllers/wf/workitem_assignments_controller.rb

Overview

Schema Information

Table name: wf_transition_static_assignments

id            :integer          not null, primary key
party_id      :integer
transition_id :integer
workflow_id   :integer
created_at    :datetime         not null
updated_at    :datetime         not null

Defined Under Namespace

Modules: ActsAsParty, ApplicationHelper, ArcsHelper, Callbacks, CaseCommand, CasesHelper, CommentsHelper, FieldsHelper, FormsHelper, GuardsHelper, MultipleInstances, PlacesHelper, StaticAssignmentsHelper, TransitionsHelper, WorkflowsHelper, WorkitemAssignmentsHelper, WorkitemsHelper Classes: ApplicationController, ApplicationJob, ApplicationMailer, ApplicationRecord, Arc, ArcsController, Case, CaseAssignment, CasesController, Comment, CommentsController, DemoTarget, Engine, Entry, Field, FieldValue, FieldsController, FireTimedWorkitemJob, Form, FormsController, Group, Guard, GuardsController, Lola, Party, Place, PlacesController, StaticAssignmentsController, Token, Transition, TransitionStaticAssignment, TransitionsController, User, Workflow, WorkflowsController, Workitem, WorkitemAssignment, WorkitemAssignmentsController, WorkitemsController

Constant Summary collapse

VERSION =
"0.2.5"

Class Attribute Summary collapse

Class Attribute Details

.assignment_callbacksObject

Returns the value of attribute assignment_callbacks.



9
10
11
# File 'lib/wf.rb', line 9

def assignment_callbacks
  @assignment_callbacks
end

.deadline_callbacksObject

Returns the value of attribute deadline_callbacks.



13
14
15
# File 'lib/wf.rb', line 13

def deadline_callbacks
  @deadline_callbacks
end

.enable_callbacksObject

Returns the value of attribute enable_callbacks.



7
8
9
# File 'lib/wf.rb', line 7

def enable_callbacks
  @enable_callbacks
end

.entry_classObject

Returns the value of attribute entry_class.



17
18
19
# File 'lib/wf.rb', line 17

def entry_class
  @entry_class
end

.field_classObject

Returns the value of attribute field_class.



18
19
20
# File 'lib/wf.rb', line 18

def field_class
  @field_class
end

.finish_conditionsObject

Returns the value of attribute finish_conditions.



23
24
25
# File 'lib/wf.rb', line 23

def finish_conditions
  @finish_conditions
end

.fire_callbacksObject

Returns the value of attribute fire_callbacks.



8
9
10
# File 'lib/wf.rb', line 8

def fire_callbacks
  @fire_callbacks
end

.form_classObject

Returns the value of attribute form_class.



16
17
18
# File 'lib/wf.rb', line 16

def form_class
  @form_class
end

.hold_timeout_callbacksObject

Returns the value of attribute hold_timeout_callbacks.



14
15
16
# File 'lib/wf.rb', line 14

def hold_timeout_callbacks
  @hold_timeout_callbacks
end

.notification_callbacksObject

Returns the value of attribute notification_callbacks.



11
12
13
# File 'lib/wf.rb', line 11

def notification_callbacks
  @notification_callbacks
end

.org_classesObject

Returns the value of attribute org_classes.



21
22
23
# File 'lib/wf.rb', line 21

def org_classes
  @org_classes
end

.time_callbacksObject

Returns the value of attribute time_callbacks.



12
13
14
# File 'lib/wf.rb', line 12

def time_callbacks
  @time_callbacks
end

.unassignment_callbacksObject

Returns the value of attribute unassignment_callbacks.



10
11
12
# File 'lib/wf.rb', line 10

def unassignment_callbacks
  @unassignment_callbacks
end

.use_lolaObject

Returns the value of attribute use_lola.



25
26
27
# File 'lib/wf.rb', line 25

def use_lola
  @use_lola
end

.user_classObject

Returns the value of attribute user_class.



20
21
22
# File 'lib/wf.rb', line 20

def user_class
  @user_class
end