teamforge 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/teamforge/services/categorizationapp.rb +17 -73
- data/lib/teamforge/services/collabnet.rb +109 -473
- data/lib/teamforge/services/discussionapp.rb +24 -84
- data/lib/teamforge/services/documentapp.rb +26 -102
- data/lib/teamforge/services/frsapp.rb +24 -92
- data/lib/teamforge/services/integrationdataapp.rb +9 -41
- data/lib/teamforge/services/newsapp.rb +8 -32
- data/lib/teamforge/services/pageapp.rb +23 -95
- data/lib/teamforge/services/planningapp.rb +32 -112
- data/lib/teamforge/services/pluggableapp.rb +33 -133
- data/lib/teamforge/services/rbacapp.rb +51 -215
- data/lib/teamforge/services/scmapp.rb +28 -104
- data/lib/teamforge/services/simplefilestorageapp.rb +5 -25
- data/lib/teamforge/services/taskapp.rb +24 -100
- data/lib/teamforge/services/trackerapp.rb +59 -223
- data/lib/teamforge/services/wikiapp.rb +12 -48
- data/lib/teamforge/tfsoaprequest.rb +14 -0
- data/lib/teamforge/tftype.rb +12 -0
- data/lib/teamforge/version.rb +1 -1
- data/lib/teamforge.rb +4 -1
- metadata +8 -6
@@ -5,107 +5,35 @@ module TeamForge
|
|
5
5
|
######################
|
6
6
|
# PageApp Messages
|
7
7
|
######################
|
8
|
-
AddPageImage =
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
end
|
27
|
-
end
|
28
|
-
DeletePageImage = Struct.new(:session_id, :project_id, :attachment_id) do
|
29
|
-
def send (server=nil, proxy=nil)
|
30
|
-
TeamForge.request(self, server, proxy)
|
31
|
-
end
|
32
|
-
end
|
33
|
-
DeletePage = Struct.new(:session_id, :page_id) do
|
34
|
-
def send (server=nil, proxy=nil)
|
35
|
-
TeamForge.request(self, server, proxy)
|
36
|
-
end
|
37
|
-
end
|
38
|
-
GetPageComponents = Struct.new(:session_id, :page_id) do
|
39
|
-
def send (server=nil, proxy=nil)
|
40
|
-
TeamForge.request(self, server, proxy)
|
41
|
-
end
|
42
|
-
end
|
43
|
-
GetPageData = Struct.new(:session_id, :page_id) do
|
44
|
-
def send (server=nil, proxy=nil)
|
45
|
-
TeamForge.request(self, server, proxy)
|
46
|
-
end
|
47
|
-
end
|
48
|
-
GetPageImageUrl = Struct.new(:session_id, :project_id, :attachment_id) do
|
49
|
-
def send (server=nil, proxy=nil)
|
50
|
-
TeamForge.request(self, server, proxy)
|
51
|
-
end
|
52
|
-
end
|
53
|
-
GetPageList = Struct.new(:session_id, :project_id) do
|
54
|
-
def send (server=nil, proxy=nil)
|
55
|
-
TeamForge.request(self, server, proxy)
|
56
|
-
end
|
57
|
-
end
|
58
|
-
GetTextComponentContent = Struct.new(:session_id, :page_comp_id) do
|
59
|
-
def send (server=nil, proxy=nil)
|
60
|
-
TeamForge.request(self, server, proxy)
|
61
|
-
end
|
62
|
-
end
|
63
|
-
ListPageImages = Struct.new(:session_id, :project_id) do
|
64
|
-
def send (server=nil, proxy=nil)
|
65
|
-
TeamForge.request(self, server, proxy)
|
66
|
-
end
|
67
|
-
end
|
68
|
-
MovePage = Struct.new(:session_id, :page_folder_path, :dest_path) do
|
69
|
-
def send (server=nil, proxy=nil)
|
70
|
-
TeamForge.request(self, server, proxy)
|
71
|
-
end
|
72
|
-
end
|
73
|
-
SetComponentDisplayOrder = Struct.new(:session_id, :page_id, :component_ids) do
|
74
|
-
def send (server=nil, proxy=nil)
|
75
|
-
TeamForge.request(self, server, proxy)
|
76
|
-
end
|
77
|
-
end
|
78
|
-
SetPageComponentData = Struct.new(:session_id, :page_component) do
|
79
|
-
def send (server=nil, proxy=nil)
|
80
|
-
TeamForge.request(self, server, proxy)
|
81
|
-
end
|
82
|
-
end
|
83
|
-
SetPageData = Struct.new(:session_id, :page_data) do
|
84
|
-
def send (server=nil, proxy=nil)
|
85
|
-
TeamForge.request(self, server, proxy)
|
86
|
-
end
|
87
|
-
end
|
88
|
-
SetPageDisplayOrder = Struct.new(:session_id, :folder_id, :children_page_ids) do
|
89
|
-
def send (server=nil, proxy=nil)
|
90
|
-
TeamForge.request(self, server, proxy)
|
91
|
-
end
|
92
|
-
end
|
93
|
-
SetTextComponentContent = Struct.new(:session_id, :page_comp_id, :content) do
|
94
|
-
def send (server=nil, proxy=nil)
|
95
|
-
TeamForge.request(self, server, proxy)
|
96
|
-
end
|
97
|
-
end
|
8
|
+
AddPageImage = TFSoapRequest.new(:session_id, :project_id, :file_id, :filename, :mimetype)
|
9
|
+
CreateComponent = TFSoapRequest.new(:session_id, :page_id, :comp_name, :component_type, :top_of_page, :visibility, :attributes, :content)
|
10
|
+
CreatePage = TFSoapRequest.new(:session_id, :project_id, :parent_id, :title, :visible, :freeform)
|
11
|
+
DeletePageComponent = TFSoapRequest.new(:session_id, :page_component_id)
|
12
|
+
DeletePageImage = TFSoapRequest.new(:session_id, :project_id, :attachment_id)
|
13
|
+
DeletePage = TFSoapRequest.new(:session_id, :page_id)
|
14
|
+
GetPageComponents = TFSoapRequest.new(:session_id, :page_id)
|
15
|
+
GetPageData = TFSoapRequest.new(:session_id, :page_id)
|
16
|
+
GetPageImageUrl = TFSoapRequest.new(:session_id, :project_id, :attachment_id)
|
17
|
+
GetPageList = TFSoapRequest.new(:session_id, :project_id)
|
18
|
+
GetTextComponentContent = TFSoapRequest.new(:session_id, :page_comp_id)
|
19
|
+
ListPageImages = TFSoapRequest.new(:session_id, :project_id)
|
20
|
+
MovePage = TFSoapRequest.new(:session_id, :page_folder_path, :dest_path)
|
21
|
+
SetComponentDisplayOrder = TFSoapRequest.new(:session_id, :page_id, :component_ids)
|
22
|
+
SetPageComponentData = TFSoapRequest.new(:session_id, :page_component)
|
23
|
+
SetPageData = TFSoapRequest.new(:session_id, :page_data)
|
24
|
+
SetPageDisplayOrder = TFSoapRequest.new(:session_id, :folder_id, :children_page_ids)
|
25
|
+
SetTextComponentContent = TFSoapRequest.new(:session_id, :page_comp_id, :content)
|
98
26
|
|
99
27
|
|
100
28
|
######################
|
101
29
|
# PageApp Types
|
102
30
|
######################
|
103
31
|
|
104
|
-
AttachmentSoapRow =
|
105
|
-
PageComponentSoapDO =
|
106
|
-
PageSoapDO =
|
107
|
-
PageSoapRow =
|
108
|
-
SoapNamedValues =
|
32
|
+
AttachmentSoapRow = TFType.new(:attachment_id,:created_by,:created_by_fullname,:date_created,:file_name,:file_size,:mimetype,:raw_file_id,:stored_file_id,:transaction_id, :attributes!)
|
33
|
+
PageComponentSoapDO = TFType.new(:component_type,:created_by,:created_date,:folder_id,:id,:last_modified_by,:last_modified_date,:path,:settings,:title,:version,:visiblity, :attributes!)
|
34
|
+
PageSoapDO = TFType.new(:created_by,:created_date,:description,:free_form,:id,:last_modified_by,:last_modified_date,:parent_folder_id,:path,:project_id,:title,:version,:visible, :attributes!)
|
35
|
+
PageSoapRow = TFType.new(:created_by,:created_on,:description,:display_position,:freeform,:id,:last_modified_by,:last_modified_on,:parent_folder_id,:path,:project_id,:title,:visible, :attributes!)
|
36
|
+
SoapNamedValues = TFType.new(:names,:values, :attributes!)
|
109
37
|
|
110
38
|
end # module PageApp
|
111
39
|
|
@@ -5,124 +5,44 @@ module TeamForge
|
|
5
5
|
######################
|
6
6
|
# PlanningApp Messages
|
7
7
|
######################
|
8
|
-
CreatePlanningFolder2 =
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
GetPlanningFolder2Data = Struct.new(:session_id, :planning_folder_id) do
|
29
|
-
def send (server=nil, proxy=nil)
|
30
|
-
TeamForge.request(self, server, proxy)
|
31
|
-
end
|
32
|
-
end
|
33
|
-
GetPlanningFolder2List = Struct.new(:session_id, :parent_id, :recursive) do
|
34
|
-
def send (server=nil, proxy=nil)
|
35
|
-
TeamForge.request(self, server, proxy)
|
36
|
-
end
|
37
|
-
end
|
38
|
-
GetPlanningFolderData = Struct.new(:session_id, :planning_folder_id) do
|
39
|
-
def send (server=nil, proxy=nil)
|
40
|
-
TeamForge.request(self, server, proxy)
|
41
|
-
end
|
42
|
-
end
|
43
|
-
GetPlanningFolderList = Struct.new(:session_id, :parent_id, :recursive) do
|
44
|
-
def send (server=nil, proxy=nil)
|
45
|
-
TeamForge.request(self, server, proxy)
|
46
|
-
end
|
47
|
-
end
|
48
|
-
GetPlanningFolderSummary2List = Struct.new(:session_id, :parent_id, :recursive) do
|
49
|
-
def send (server=nil, proxy=nil)
|
50
|
-
TeamForge.request(self, server, proxy)
|
51
|
-
end
|
52
|
-
end
|
53
|
-
GetPlanningFolderSummary2 = Struct.new(:session_id, :planning_folder_id) do
|
54
|
-
def send (server=nil, proxy=nil)
|
55
|
-
TeamForge.request(self, server, proxy)
|
56
|
-
end
|
57
|
-
end
|
58
|
-
GetPlanningFolderSummaryList = Struct.new(:session_id, :parent_id, :recursive) do
|
59
|
-
def send (server=nil, proxy=nil)
|
60
|
-
TeamForge.request(self, server, proxy)
|
61
|
-
end
|
62
|
-
end
|
63
|
-
GetPlanningFolderSummary = Struct.new(:session_id, :planning_folder_id) do
|
64
|
-
def send (server=nil, proxy=nil)
|
65
|
-
TeamForge.request(self, server, proxy)
|
66
|
-
end
|
67
|
-
end
|
68
|
-
GetPlanningStatusValues = Struct.new(:session_id, :project_id) do
|
69
|
-
def send (server=nil, proxy=nil)
|
70
|
-
TeamForge.request(self, server, proxy)
|
71
|
-
end
|
72
|
-
end
|
73
|
-
GetRankedArtifactList = Struct.new(:session_id, :planning_folder_id) do
|
74
|
-
def send (server=nil, proxy=nil)
|
75
|
-
TeamForge.request(self, server, proxy)
|
76
|
-
end
|
77
|
-
end
|
78
|
-
MovePlanningFolder2 = Struct.new(:session_id, :planning_folder_id, :dest_parent_id) do
|
79
|
-
def send (server=nil, proxy=nil)
|
80
|
-
TeamForge.request(self, server, proxy)
|
81
|
-
end
|
82
|
-
end
|
83
|
-
MovePlanningFolder = Struct.new(:session_id, :planning_folder_id, :dest_parent_id) do
|
84
|
-
def send (server=nil, proxy=nil)
|
85
|
-
TeamForge.request(self, server, proxy)
|
86
|
-
end
|
87
|
-
end
|
88
|
-
ReorderPlanningFolders = Struct.new(:session_id, :parent_id, :planning_folder_ids) do
|
89
|
-
def send (server=nil, proxy=nil)
|
90
|
-
TeamForge.request(self, server, proxy)
|
91
|
-
end
|
92
|
-
end
|
93
|
-
SetPlanningFolder2Data = Struct.new(:session_id, :planning_folder_data) do
|
94
|
-
def send (server=nil, proxy=nil)
|
95
|
-
TeamForge.request(self, server, proxy)
|
96
|
-
end
|
97
|
-
end
|
98
|
-
SetPlanningFolderData = Struct.new(:session_id, :planning_folder_data) do
|
99
|
-
def send (server=nil, proxy=nil)
|
100
|
-
TeamForge.request(self, server, proxy)
|
101
|
-
end
|
102
|
-
end
|
103
|
-
SetPlanningStatusValues = Struct.new(:session_id, :project_id, :status_values) do
|
104
|
-
def send (server=nil, proxy=nil)
|
105
|
-
TeamForge.request(self, server, proxy)
|
106
|
-
end
|
107
|
-
end
|
8
|
+
CreatePlanningFolder2 = TFSoapRequest.new(:session_id, :parent_id, :title, :description, :start_date, :end_date, :status, :capacity, :release_id, :tracker_unit_id)
|
9
|
+
CreatePlanningFolder = TFSoapRequest.new(:session_id, :parent_id, :title, :description, :start_date, :end_date, :status, :capacity, :release_id)
|
10
|
+
DeletePlanningFolder = TFSoapRequest.new(:session_id, :planning_folder_id)
|
11
|
+
GetArtifactListInPlanningFolder = TFSoapRequest.new(:session_id, :parent_id, :filters, :recursive)
|
12
|
+
GetPlanningFolder2Data = TFSoapRequest.new(:session_id, :planning_folder_id)
|
13
|
+
GetPlanningFolder2List = TFSoapRequest.new(:session_id, :parent_id, :recursive)
|
14
|
+
GetPlanningFolderData = TFSoapRequest.new(:session_id, :planning_folder_id)
|
15
|
+
GetPlanningFolderList = TFSoapRequest.new(:session_id, :parent_id, :recursive)
|
16
|
+
GetPlanningFolderSummary2List = TFSoapRequest.new(:session_id, :parent_id, :recursive)
|
17
|
+
GetPlanningFolderSummary2 = TFSoapRequest.new(:session_id, :planning_folder_id)
|
18
|
+
GetPlanningFolderSummaryList = TFSoapRequest.new(:session_id, :parent_id, :recursive)
|
19
|
+
GetPlanningFolderSummary = TFSoapRequest.new(:session_id, :planning_folder_id)
|
20
|
+
GetPlanningStatusValues = TFSoapRequest.new(:session_id, :project_id)
|
21
|
+
GetRankedArtifactList = TFSoapRequest.new(:session_id, :planning_folder_id)
|
22
|
+
MovePlanningFolder2 = TFSoapRequest.new(:session_id, :planning_folder_id, :dest_parent_id)
|
23
|
+
MovePlanningFolder = TFSoapRequest.new(:session_id, :planning_folder_id, :dest_parent_id)
|
24
|
+
ReorderPlanningFolders = TFSoapRequest.new(:session_id, :parent_id, :planning_folder_ids)
|
25
|
+
SetPlanningFolder2Data = TFSoapRequest.new(:session_id, :planning_folder_data)
|
26
|
+
SetPlanningFolderData = TFSoapRequest.new(:session_id, :planning_folder_data)
|
27
|
+
SetPlanningStatusValues = TFSoapRequest.new(:session_id, :project_id, :status_values)
|
108
28
|
|
109
29
|
|
110
30
|
######################
|
111
31
|
# PlanningApp Types
|
112
32
|
######################
|
113
33
|
|
114
|
-
ArtifactsInPlanningFolderSoapRow =
|
115
|
-
PlanningFolder2SoapDO =
|
116
|
-
PlanningFolder2SoapRow =
|
117
|
-
PlanningFolderSoapDO =
|
118
|
-
PlanningFolderSoapRow =
|
119
|
-
PlanningFolderSummary2SoapDO =
|
120
|
-
PlanningFolderSummary2SoapRow =
|
121
|
-
PlanningFolderSummarySoapDO =
|
122
|
-
PlanningFolderSummarySoapRow =
|
123
|
-
PlanningStatusValueSoapDO =
|
124
|
-
RankedArtifactSoapRow =
|
125
|
-
SoapFilter =
|
34
|
+
ArtifactsInPlanningFolderSoapRow = TFType.new(:actual_effort,:artifact_group,:assigned_to_fullname,:assigned_to_username,:autosumming,:category,:children_ids,:close_date,:customer,:description,:estimated_effort,:folder_id,:folder_path_string,:folder_title,:has_children,:id,:last_modified_date,:parent_id,:planning_folder_id,:planning_folder_title,:points,:priority,:project_id,:project_path_string,:project_title,:remaining_effort,:reported_in_release_id,:reported_in_release_title,:resolved_in_release_id,:resolved_in_release_title,:status,:status_class,:submitted_by_fullname,:submitted_by_username,:submitted_date,:title,:tracker_icon,:version, :attributes!)
|
35
|
+
PlanningFolder2SoapDO = TFType.new(:capacity,:created_by,:created_date,:description,:end_date,:id,:last_modified_by,:last_modified_date,:parent_folder_id,:path,:project_id,:release_id,:start_date,:status,:status_class,:title,:tracker_unit_id,:version, :attributes!)
|
36
|
+
PlanningFolder2SoapRow = TFType.new(:capacity,:created_by,:created_on,:description,:end_date,:id,:last_modified_by,:last_modified_on,:parent_folder_id,:path,:project_id,:release_id,:release_title,:start_date,:status,:status_class,:title,:tracker_unit_id, :attributes!)
|
37
|
+
PlanningFolderSoapDO = TFType.new(:capacity,:created_by,:created_date,:description,:end_date,:id,:last_modified_by,:last_modified_date,:parent_folder_id,:path,:project_id,:release_id,:start_date,:status,:status_class,:title,:version, :attributes!)
|
38
|
+
PlanningFolderSoapRow = TFType.new(:capacity,:created_by,:created_on,:description,:end_date,:id,:last_modified_by,:last_modified_on,:parent_folder_id,:path,:project_id,:release_id,:release_title,:start_date,:status,:status_class,:title, :attributes!)
|
39
|
+
PlanningFolderSummary2SoapDO = TFType.new(:actual_effort_summary,:actual_priority0,:actual_priority1,:actual_priority2,:actual_priority3,:actual_priority4,:actual_priority5,:capacity,:closed_points,:created_by,:created_date,:description,:end_date,:estimated_effort_summary,:estimated_priority0,:estimated_priority1,:estimated_priority2,:estimated_priority3,:estimated_priority4,:estimated_priority5,:id,:last_modified_by,:last_modified_date,:open_points,:open_priority0,:open_priority1,:open_priority2,:open_priority3,:open_priority4,:open_priority5,:parent_folder_id,:path,:project_id,:release_id,:release_path,:remaining_effort_summary,:remaining_priority0,:remaining_priority1,:remaining_priority2,:remaining_priority3,:remaining_priority4,:remaining_priority5,:start_date,:status,:status_class,:story_points_priority0,:story_points_priority1,:story_points_priority2,:story_points_priority3,:story_points_priority4,:story_points_priority5,:title,:total_closed,:total_open,:tracker_unit_id,:version, :attributes!)
|
40
|
+
PlanningFolderSummary2SoapRow = TFType.new(:actual_effort_summary,:actual_priority0,:actual_priority1,:actual_priority2,:actual_priority3,:actual_priority4,:actual_priority5,:capacity,:closed_points,:created_by,:created_on,:description,:end_date,:estimated_effort_summary,:estimated_priority0,:estimated_priority1,:estimated_priority2,:estimated_priority3,:estimated_priority4,:estimated_priority5,:id,:last_modified_by,:last_modified_on,:open_points,:open_priority0,:open_priority1,:open_priority2,:open_priority3,:open_priority4,:open_priority5,:parent_folder_id,:path,:project_id,:release_id,:release_path,:remaining_effort_summary,:remaining_priority0,:remaining_priority1,:remaining_priority2,:remaining_priority3,:remaining_priority4,:remaining_priority5,:start_date,:status,:status_class,:story_points_priority0,:story_points_priority1,:story_points_priority2,:story_points_priority3,:story_points_priority4,:story_points_priority5,:title,:total_closed,:total_open,:tracker_unit_id, :attributes!)
|
41
|
+
PlanningFolderSummarySoapDO = TFType.new(:actual_effort_summary,:actual_priority0,:actual_priority1,:actual_priority2,:actual_priority3,:actual_priority4,:actual_priority5,:capacity,:closed_points,:created_by,:created_date,:description,:end_date,:estimated_effort_summary,:estimated_priority0,:estimated_priority1,:estimated_priority2,:estimated_priority3,:estimated_priority4,:estimated_priority5,:id,:last_modified_by,:last_modified_date,:open_points,:open_priority0,:open_priority1,:open_priority2,:open_priority3,:open_priority4,:open_priority5,:parent_folder_id,:path,:project_id,:release_id,:release_path,:remaining_effort_summary,:remaining_priority0,:remaining_priority1,:remaining_priority2,:remaining_priority3,:remaining_priority4,:remaining_priority5,:start_date,:status,:status_class,:title,:total_closed,:total_open,:version, :attributes!)
|
42
|
+
PlanningFolderSummarySoapRow = TFType.new(:actual_effort_summary,:actual_priority0,:actual_priority1,:actual_priority2,:actual_priority3,:actual_priority4,:actual_priority5,:capacity,:closed_points,:created_by,:created_on,:description,:end_date,:estimated_effort_summary,:estimated_priority0,:estimated_priority1,:estimated_priority2,:estimated_priority3,:estimated_priority4,:estimated_priority5,:id,:last_modified_by,:last_modified_on,:open_points,:open_priority0,:open_priority1,:open_priority2,:open_priority3,:open_priority4,:open_priority5,:parent_folder_id,:path,:project_id,:release_id,:release_path,:remaining_effort_summary,:remaining_priority0,:remaining_priority1,:remaining_priority2,:remaining_priority3,:remaining_priority4,:remaining_priority5,:start_date,:status,:status_class,:title,:total_closed,:total_open, :attributes!)
|
43
|
+
PlanningStatusValueSoapDO = TFType.new(:id,:is_default,:value,:value_class, :attributes!)
|
44
|
+
RankedArtifactSoapRow = TFType.new(:actual_effort,:artifact_group,:assigned_to_fullname,:assigned_to_username,:autosumming,:category,:children_ids,:close_date,:customer,:description,:estimated_effort,:folder_id,:folder_path_string,:folder_title,:has_children,:id,:last_modified_date,:parent_id,:planning_folder_id,:planning_folder_title,:points,:priority,:project_id,:project_path_string,:project_title,:rank,:remaining_effort,:reported_in_release_id,:reported_in_release_title,:resolved_in_release_id,:resolved_in_release_title,:status,:status_class,:submitted_by_fullname,:submitted_by_username,:submitted_date,:title,:tracker_icon,:version, :attributes!)
|
45
|
+
SoapFilter = TFType.new(:name,:value, :attributes!)
|
126
46
|
|
127
47
|
end # module PlanningApp
|
128
48
|
|
@@ -5,145 +5,45 @@ module TeamForge
|
|
5
5
|
######################
|
6
6
|
# PluggableApp Messages
|
7
7
|
######################
|
8
|
-
CreateIntegratedApplication2 =
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
EditIntegratedApplicationFromXMLFiles = Struct.new(:session_id, :integrated_app_id, :dep_xml_byte_array, :app_xml_byte_array, :icon_file_id) do
|
34
|
-
def send (server=nil, proxy=nil)
|
35
|
-
TeamForge.request(self, server, proxy)
|
36
|
-
end
|
37
|
-
end
|
38
|
-
EditIntegratedApplication = Struct.new(:session_id, :soap_do) do
|
39
|
-
def send (server=nil, proxy=nil)
|
40
|
-
TeamForge.request(self, server, proxy)
|
41
|
-
end
|
42
|
-
end
|
43
|
-
EditProjectConfigurationParameters2 = Struct.new(:session_id, :integrated_app_id, :project_id, :param_do) do
|
44
|
-
def send (server=nil, proxy=nil)
|
45
|
-
TeamForge.request(self, server, proxy)
|
46
|
-
end
|
47
|
-
end
|
48
|
-
EditProjectConfigurationParameters = Struct.new(:session_id, :project_id, :param_do) do
|
49
|
-
def send (server=nil, proxy=nil)
|
50
|
-
TeamForge.request(self, server, proxy)
|
51
|
-
end
|
52
|
-
end
|
53
|
-
EnablePluggableComponent = Struct.new(:session_id, :project_id, :pluggable_id, :params, :prefix) do
|
54
|
-
def send (server=nil, proxy=nil)
|
55
|
-
TeamForge.request(self, server, proxy)
|
56
|
-
end
|
57
|
-
end
|
58
|
-
GetBaseUrlByLinkId = Struct.new(:session_id, :link_id) do
|
59
|
-
def send (server=nil, proxy=nil)
|
60
|
-
TeamForge.request(self, server, proxy)
|
61
|
-
end
|
62
|
-
end
|
63
|
-
GetIntegratedAppPrefixes = Struct.new(:session_id) do
|
64
|
-
def send (server=nil, proxy=nil)
|
65
|
-
TeamForge.request(self, server, proxy)
|
66
|
-
end
|
67
|
-
end
|
68
|
-
GetIntegratedApplicationByName2 = Struct.new(:session_id, :integrated_app_name) do
|
69
|
-
def send (server=nil, proxy=nil)
|
70
|
-
TeamForge.request(self, server, proxy)
|
71
|
-
end
|
72
|
-
end
|
73
|
-
GetIntegratedApplicationByName = Struct.new(:session_id, :plug_name) do
|
74
|
-
def send (server=nil, proxy=nil)
|
75
|
-
TeamForge.request(self, server, proxy)
|
76
|
-
end
|
77
|
-
end
|
78
|
-
GetLinkPlugIdByPlugId = Struct.new(:session_id, :project_id, :pluggable_id) do
|
79
|
-
def send (server=nil, proxy=nil)
|
80
|
-
TeamForge.request(self, server, proxy)
|
81
|
-
end
|
82
|
-
end
|
83
|
-
GetLinkPlugId = Struct.new(:session_id, :project_path, :base_url) do
|
84
|
-
def send (server=nil, proxy=nil)
|
85
|
-
TeamForge.request(self, server, proxy)
|
86
|
-
end
|
87
|
-
end
|
88
|
-
GetPlugIdByBaseUrl = Struct.new(:session_id, :base_url) do
|
89
|
-
def send (server=nil, proxy=nil)
|
90
|
-
TeamForge.request(self, server, proxy)
|
91
|
-
end
|
92
|
-
end
|
93
|
-
GetProjectConfigParameterData = Struct.new(:session_id, :link_id) do
|
94
|
-
def send (server=nil, proxy=nil)
|
95
|
-
TeamForge.request(self, server, proxy)
|
96
|
-
end
|
97
|
-
end
|
98
|
-
GetProjectPathByIntegratedAppId = Struct.new(:session_id, :link_id) do
|
99
|
-
def send (server=nil, proxy=nil)
|
100
|
-
TeamForge.request(self, server, proxy)
|
101
|
-
end
|
102
|
-
end
|
103
|
-
GetProjectPrefix = Struct.new(:session_id, :link_id) do
|
104
|
-
def send (server=nil, proxy=nil)
|
105
|
-
TeamForge.request(self, server, proxy)
|
106
|
-
end
|
107
|
-
end
|
108
|
-
ListPluggableComponentsForProject = Struct.new(:session_id, :project_id) do
|
109
|
-
def send (server=nil, proxy=nil)
|
110
|
-
TeamForge.request(self, server, proxy)
|
111
|
-
end
|
112
|
-
end
|
113
|
-
ListPluggableComponents = Struct.new(:session_id) do
|
114
|
-
def send (server=nil, proxy=nil)
|
115
|
-
TeamForge.request(self, server, proxy)
|
116
|
-
end
|
117
|
-
end
|
118
|
-
RemoveProjectIntegratedApplication = Struct.new(:session_id, :link_id) do
|
119
|
-
def send (server=nil, proxy=nil)
|
120
|
-
TeamForge.request(self, server, proxy)
|
121
|
-
end
|
122
|
-
end
|
123
|
-
SetPluggableAppMessageResource = Struct.new(:session_id, :pluggable_id, :locale, :key, :value) do
|
124
|
-
def send (server=nil, proxy=nil)
|
125
|
-
TeamForge.request(self, server, proxy)
|
126
|
-
end
|
127
|
-
end
|
128
|
-
UpdateRecentAccess = Struct.new(:user_id, :object_id) do
|
129
|
-
def send (server=nil, proxy=nil)
|
130
|
-
TeamForge.request(self, server, proxy)
|
131
|
-
end
|
132
|
-
end
|
8
|
+
CreateIntegratedApplication2 = TFSoapRequest.new(:session_id, :plug_name, :description, :base_url, :go_url, :prefix, :is_scm_required, :require_proj_prefix, :icon_file_id, :end_point, :param_do, :admin_url, :perm_soap_do, :is_page_component_required, :pce_input_type, :pce_result_format, :pce_description, :pce_title, :id_pattern, :service_type)
|
9
|
+
CreateIntegratedApplicationFromXMLFiles2 = TFSoapRequest.new(:session_id, :dep_xml_byte_array, :app_xml_byte_array, :icon_file_id)
|
10
|
+
CreateIntegratedApplicationFromXMLFiles = TFSoapRequest.new(:session_id, :dep_xml_byte_array, :app_xml_byte_array, :icon_file_id)
|
11
|
+
CreateIntegratedApplication = TFSoapRequest.new(:session_id, :plug_name, :description, :base_url, :go_url, :prefix, :is_scm_required, :require_proj_prefix, :icon_file_id, :end_point, :param_do, :admin_url, :perm_soap_do, :pce_input_type, :pce_result_format, :pce_description, :pce_title)
|
12
|
+
EditIntegratedApplication2 = TFSoapRequest.new(:session_id, :soap_do)
|
13
|
+
EditIntegratedApplicationFromXMLFiles = TFSoapRequest.new(:session_id, :integrated_app_id, :dep_xml_byte_array, :app_xml_byte_array, :icon_file_id)
|
14
|
+
EditIntegratedApplication = TFSoapRequest.new(:session_id, :soap_do)
|
15
|
+
EditProjectConfigurationParameters2 = TFSoapRequest.new(:session_id, :integrated_app_id, :project_id, :param_do)
|
16
|
+
EditProjectConfigurationParameters = TFSoapRequest.new(:session_id, :project_id, :param_do)
|
17
|
+
EnablePluggableComponent = TFSoapRequest.new(:session_id, :project_id, :pluggable_id, :params, :prefix)
|
18
|
+
GetBaseUrlByLinkId = TFSoapRequest.new(:session_id, :link_id)
|
19
|
+
GetIntegratedAppPrefixes = TFSoapRequest.new(:session_id)
|
20
|
+
GetIntegratedApplicationByName2 = TFSoapRequest.new(:session_id, :integrated_app_name)
|
21
|
+
GetIntegratedApplicationByName = TFSoapRequest.new(:session_id, :plug_name)
|
22
|
+
GetLinkPlugIdByPlugId = TFSoapRequest.new(:session_id, :project_id, :pluggable_id)
|
23
|
+
GetLinkPlugId = TFSoapRequest.new(:session_id, :project_path, :base_url)
|
24
|
+
GetPlugIdByBaseUrl = TFSoapRequest.new(:session_id, :base_url)
|
25
|
+
GetProjectConfigParameterData = TFSoapRequest.new(:session_id, :link_id)
|
26
|
+
GetProjectPathByIntegratedAppId = TFSoapRequest.new(:session_id, :link_id)
|
27
|
+
GetProjectPrefix = TFSoapRequest.new(:session_id, :link_id)
|
28
|
+
ListPluggableComponentsForProject = TFSoapRequest.new(:session_id, :project_id)
|
29
|
+
ListPluggableComponents = TFSoapRequest.new(:session_id)
|
30
|
+
RemoveProjectIntegratedApplication = TFSoapRequest.new(:session_id, :link_id)
|
31
|
+
SetPluggableAppMessageResource = TFSoapRequest.new(:session_id, :pluggable_id, :locale, :key, :value)
|
32
|
+
UpdateRecentAccess = TFSoapRequest.new(:user_id, :object_id)
|
133
33
|
|
134
34
|
|
135
35
|
######################
|
136
36
|
# PluggableApp Types
|
137
37
|
######################
|
138
38
|
|
139
|
-
LinkPluggableComponentSoapRow =
|
140
|
-
PluggableComponent2SoapDO =
|
141
|
-
PluggableComponentParameterSoapDO =
|
142
|
-
PluggableComponentParameterValueSoapDO =
|
143
|
-
PluggableComponentSoapDO =
|
144
|
-
PluggableComponentSoapRow =
|
145
|
-
PluggablePermissionSoapDO =
|
146
|
-
SoapNamedValues =
|
39
|
+
LinkPluggableComponentSoapRow = TFType.new(:integrated_app_id,:prefix,:proj_integrated_app_id,:project_id,:project_path_string, :attributes!)
|
40
|
+
PluggableComponent2SoapDO = TFType.new(:adminurl,:baseurl,:config_parameters,:created_by,:created_date,:description,:enabled,:endpoint,:gourl,:icon_key,:id,:id_pattern,:last_modified_by,:last_modified_date,:name,:parent_folder_id,:path,:pce_description,:pce_input_type,:pce_result_format,:pce_title,:permissions,:prefix,:project_id,:require_page_component,:require_prefix_project,:require_scmintegration,:service_type,:title,:version, :attributes!)
|
41
|
+
PluggableComponentParameterSoapDO = TFType.new(:default_value,:description,:display_type,:editable,:id,:max_length,:name,:options,:title,:value_type, :attributes!)
|
42
|
+
PluggableComponentParameterValueSoapDO = TFType.new(:id,:name,:param_id,:value, :attributes!)
|
43
|
+
PluggableComponentSoapDO = TFType.new(:adminurl,:baseurl,:config_parameters,:created_by,:created_date,:description,:enabled,:endpoint,:gourl,:icon_key,:id,:last_modified_by,:last_modified_date,:name,:parent_folder_id,:path,:pce_description,:pce_input_type,:pce_result_format,:pce_title,:permissions,:prefix,:project_id,:require_prefix_project,:require_scmintegration,:title,:version, :attributes!)
|
44
|
+
PluggableComponentSoapRow = TFType.new(:baseurl,:enabled,:icon_id,:name, :attributes!)
|
45
|
+
PluggablePermissionSoapDO = TFType.new(:created_by,:created_date,:dap_mapped_to,:description,:id,:is_admin_tool,:last_modified_by,:last_modified_date,:parent_folder_id,:path,:permission,:plug_id,:project_id,:title,:version, :attributes!)
|
46
|
+
SoapNamedValues = TFType.new(:names,:values, :attributes!)
|
147
47
|
|
148
48
|
end # module PluggableApp
|
149
49
|
|