ryandotsmith-asf-soap-adapter 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (178) hide show
  1. data/.document +5 -0
  2. data/LICENSE +20 -0
  3. data/README.rdoc +125 -0
  4. data/Rakefile +63 -0
  5. data/VERSION +1 -0
  6. data/asf-soap-adapter.gemspec +300 -0
  7. data/asf-soap-adapter.pptx +0 -0
  8. data/deploy +6 -0
  9. data/lib/active_record/connection_adapters/activesalesforce.rb +36 -0
  10. data/lib/active_record/connection_adapters/activesalesforce_adapter.rb +919 -0
  11. data/lib/active_record/connection_adapters/asf_active_record.rb +40 -0
  12. data/lib/active_record/connection_adapters/boxcar_command.rb +66 -0
  13. data/lib/active_record/connection_adapters/column_definition.rb +95 -0
  14. data/lib/active_record/connection_adapters/entity_definition.rb +59 -0
  15. data/lib/active_record/connection_adapters/id_resolver.rb +84 -0
  16. data/lib/active_record/connection_adapters/recording_binding.rb +93 -0
  17. data/lib/active_record/connection_adapters/relationship_definition.rb +81 -0
  18. data/lib/active_record/connection_adapters/result_array.rb +31 -0
  19. data/lib/active_record/connection_adapters/sid_authentication_filter.rb +57 -0
  20. data/lib/activerecord-activesalesforce-adapter.rb +1 -0
  21. data/lib/asf-soap-adapter.rb +34 -0
  22. data/lib/salesforce/account.rb +28 -0
  23. data/lib/salesforce/account_feed.rb +27 -0
  24. data/lib/salesforce/apex_log.rb +28 -0
  25. data/lib/salesforce/asset.rb +27 -0
  26. data/lib/salesforce/asset_feed.rb +27 -0
  27. data/lib/salesforce/campaign.rb +27 -0
  28. data/lib/salesforce/campaign_feed.rb +27 -0
  29. data/lib/salesforce/case.rb +27 -0
  30. data/lib/salesforce/case_feed.rb +27 -0
  31. data/lib/salesforce/case_team_member.rb +28 -0
  32. data/lib/salesforce/case_team_role.rb +28 -0
  33. data/lib/salesforce/chatter_feed.rb +291 -0
  34. data/lib/salesforce/contact.rb +27 -0
  35. data/lib/salesforce/contact_feed.rb +29 -0
  36. data/lib/salesforce/contract.rb +27 -0
  37. data/lib/salesforce/contract_feed.rb +27 -0
  38. data/lib/salesforce/entity_subscription.rb +27 -0
  39. data/lib/salesforce/feed_comment.rb +27 -0
  40. data/lib/salesforce/feed_post.rb +27 -0
  41. data/lib/salesforce/feed_tracked_change.rb +27 -0
  42. data/lib/salesforce/file_writer.rb +61 -0
  43. data/lib/salesforce/group.rb +28 -0
  44. data/lib/salesforce/group_member.rb +28 -0
  45. data/lib/salesforce/lead.rb +27 -0
  46. data/lib/salesforce/lead_feed.rb +27 -0
  47. data/lib/salesforce/news_feed.rb +27 -0
  48. data/lib/salesforce/opportunity.rb +27 -0
  49. data/lib/salesforce/opportunity_feed.rb +27 -0
  50. data/lib/salesforce/organization.rb +27 -0
  51. data/lib/salesforce/product2.rb +27 -0
  52. data/lib/salesforce/product2_feed.rb +27 -0
  53. data/lib/salesforce/sf_base.rb +94 -0
  54. data/lib/salesforce/sf_utility.rb +214 -0
  55. data/lib/salesforce/solution.rb +27 -0
  56. data/lib/salesforce/solution_feed.rb +27 -0
  57. data/lib/salesforce/solution_history.rb +28 -0
  58. data/lib/salesforce/task.rb +28 -0
  59. data/lib/salesforce/task_feed.rb +28 -0
  60. data/lib/salesforce/user.rb +27 -0
  61. data/lib/salesforce/user_feed.rb +27 -0
  62. data/lib/salesforce/user_profile_feed.rb +27 -0
  63. data/lib/salesforce/user_role.rb +28 -0
  64. data/ryandotsmith-asf-soap-adapter.gemspec +301 -0
  65. data/test/asf-soap-adapter-rails-app/README +243 -0
  66. data/test/asf-soap-adapter-rails-app/Rakefile +10 -0
  67. data/test/asf-soap-adapter-rails-app/app/controllers/adapter_homes_controller.rb +83 -0
  68. data/test/asf-soap-adapter-rails-app/app/controllers/application_controller.rb +10 -0
  69. data/test/asf-soap-adapter-rails-app/app/helpers/adapter_homes_helper.rb +2 -0
  70. data/test/asf-soap-adapter-rails-app/app/helpers/application_helper.rb +3 -0
  71. data/test/asf-soap-adapter-rails-app/app/models/adapter_home.rb +2 -0
  72. data/test/asf-soap-adapter-rails-app/app/views/adapter_homes/edit.html.erb +24 -0
  73. data/test/asf-soap-adapter-rails-app/app/views/adapter_homes/index.html.erb +24 -0
  74. data/test/asf-soap-adapter-rails-app/app/views/adapter_homes/new.html.erb +23 -0
  75. data/test/asf-soap-adapter-rails-app/app/views/adapter_homes/show.html.erb +18 -0
  76. data/test/asf-soap-adapter-rails-app/app/views/layouts/adapter_homes.html.erb +17 -0
  77. data/test/asf-soap-adapter-rails-app/config/boot.rb +110 -0
  78. data/test/asf-soap-adapter-rails-app/config/database.yml +30 -0
  79. data/test/asf-soap-adapter-rails-app/config/environment.rb +44 -0
  80. data/test/asf-soap-adapter-rails-app/config/environments/development.rb +17 -0
  81. data/test/asf-soap-adapter-rails-app/config/environments/production.rb +28 -0
  82. data/test/asf-soap-adapter-rails-app/config/environments/salesforce-default-realm.rb +30 -0
  83. data/test/asf-soap-adapter-rails-app/config/environments/test.rb +28 -0
  84. data/test/asf-soap-adapter-rails-app/config/initializers/backtrace_silencers.rb +7 -0
  85. data/test/asf-soap-adapter-rails-app/config/initializers/cookie_verification_secret.rb +7 -0
  86. data/test/asf-soap-adapter-rails-app/config/initializers/inflections.rb +10 -0
  87. data/test/asf-soap-adapter-rails-app/config/initializers/mime_types.rb +5 -0
  88. data/test/asf-soap-adapter-rails-app/config/initializers/new_rails_defaults.rb +21 -0
  89. data/test/asf-soap-adapter-rails-app/config/initializers/session_store.rb +15 -0
  90. data/test/asf-soap-adapter-rails-app/config/locales/en.yml +5 -0
  91. data/test/asf-soap-adapter-rails-app/config/routes.rb +46 -0
  92. data/test/asf-soap-adapter-rails-app/db/development.sqlite3 +0 -0
  93. data/test/asf-soap-adapter-rails-app/db/migrate/20101107202112_create_adapter_homes.rb +15 -0
  94. data/test/asf-soap-adapter-rails-app/db/schema.rb +22 -0
  95. data/test/asf-soap-adapter-rails-app/db/seeds.rb +7 -0
  96. data/test/asf-soap-adapter-rails-app/db/test.sqlite3 +0 -0
  97. data/test/asf-soap-adapter-rails-app/log/development.log +51 -0
  98. data/test/asf-soap-adapter-rails-app/log/salesforce-default-realm.log +928 -0
  99. data/test/asf-soap-adapter-rails-app/nbproject/private/config.properties +0 -0
  100. data/test/asf-soap-adapter-rails-app/nbproject/private/private.properties +3 -0
  101. data/test/asf-soap-adapter-rails-app/nbproject/private/private.xml +4 -0
  102. data/test/asf-soap-adapter-rails-app/nbproject/private/rake-d.txt +94 -0
  103. data/test/asf-soap-adapter-rails-app/nbproject/project.properties +5 -0
  104. data/test/asf-soap-adapter-rails-app/nbproject/project.xml +9 -0
  105. data/test/asf-soap-adapter-rails-app/public/404.html +30 -0
  106. data/test/asf-soap-adapter-rails-app/public/422.html +30 -0
  107. data/test/asf-soap-adapter-rails-app/public/500.html +30 -0
  108. data/test/asf-soap-adapter-rails-app/public/favicon.ico +0 -0
  109. data/test/asf-soap-adapter-rails-app/public/images/rails.png +0 -0
  110. data/test/asf-soap-adapter-rails-app/public/javascripts/application.js +2 -0
  111. data/test/asf-soap-adapter-rails-app/public/javascripts/controls.js +963 -0
  112. data/test/asf-soap-adapter-rails-app/public/javascripts/dragdrop.js +973 -0
  113. data/test/asf-soap-adapter-rails-app/public/javascripts/effects.js +1128 -0
  114. data/test/asf-soap-adapter-rails-app/public/javascripts/prototype.js +4320 -0
  115. data/test/asf-soap-adapter-rails-app/public/robots.txt +5 -0
  116. data/test/asf-soap-adapter-rails-app/public/stylesheets/scaffold.css +54 -0
  117. data/test/asf-soap-adapter-rails-app/script/about +4 -0
  118. data/test/asf-soap-adapter-rails-app/script/console +3 -0
  119. data/test/asf-soap-adapter-rails-app/script/dbconsole +3 -0
  120. data/test/asf-soap-adapter-rails-app/script/destroy +3 -0
  121. data/test/asf-soap-adapter-rails-app/script/generate +3 -0
  122. data/test/asf-soap-adapter-rails-app/script/performance/benchmarker +3 -0
  123. data/test/asf-soap-adapter-rails-app/script/performance/profiler +3 -0
  124. data/test/asf-soap-adapter-rails-app/script/plugin +3 -0
  125. data/test/asf-soap-adapter-rails-app/script/runner +3 -0
  126. data/test/asf-soap-adapter-rails-app/script/server +3 -0
  127. data/test/asf-soap-adapter-rails-app/test/performance/browsing_test.rb +9 -0
  128. data/test/asf-soap-adapter-rails-app/test/test_helper.rb +44 -0
  129. data/test/asf-soap-adapter-rails-app/test/test_keys.rb +4 -0
  130. data/test/asf-soap-adapter-rails-app/test/unit/adapter_home_test.rb +8 -0
  131. data/test/asf-soap-adapter-rails-app/test/unit/helpers/adapter_homes_helper_test.rb +4 -0
  132. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/account_feed_test.rb +16 -0
  133. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/account_test.rb +66 -0
  134. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/apex_log_test.rb +10 -0
  135. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/asset_feed_test.rb +14 -0
  136. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/asset_test.rb +13 -0
  137. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/campaign_feed_test.rb +13 -0
  138. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/campaign_test.rb +13 -0
  139. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/case_feed_test.rb +13 -0
  140. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/case_team_member_test.rb +10 -0
  141. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/case_team_role.rb +10 -0
  142. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/case_test.rb +13 -0
  143. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/chatter_feed_test.rb +53 -0
  144. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/contact_feed_test.rb +13 -0
  145. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/contact_test.rb +14 -0
  146. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/contract_feed_test.rb +13 -0
  147. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/contract_test.rb +13 -0
  148. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/entity_subscription_test.rb +13 -0
  149. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/feed_comment_test.rb +9 -0
  150. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/feed_post_test.rb +10 -0
  151. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/feed_tracked_change_test.rb +9 -0
  152. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/group_member_test.rb +10 -0
  153. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/group_test.rb +24 -0
  154. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/lead_feed_test.rb +13 -0
  155. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/lead_test.rb +40 -0
  156. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/news_feed_test.rb +13 -0
  157. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/opportunity_feed_test.rb +13 -0
  158. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/opportunity_test.rb +13 -0
  159. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/organization_test.rb +8 -0
  160. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/product2_feed_test.rb +13 -0
  161. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/product2_test.rb +13 -0
  162. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/salesforce_base_test.rb +10 -0
  163. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/solution_feed_test.rb +13 -0
  164. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/solution_history_test.rb +10 -0
  165. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/solution_test.rb +14 -0
  166. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/task_feed_test.rb +10 -0
  167. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/task_test.rb +10 -0
  168. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/user_feed_test.rb +13 -0
  169. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/user_profile_feed_test.rb +11 -0
  170. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/user_role_test.rb +10 -0
  171. data/test/asf-soap-adapter-rails-app/test/unit/salesforce/user_test.rb +48 -0
  172. data/test/basic_test.rb +204 -0
  173. data/test/config.yml +5 -0
  174. data/test/helper.rb +10 -0
  175. data/test/recorded_test_case.rb +87 -0
  176. data/test/simple_test.rb +96 -0
  177. data/test/tests_without_rail.rb +65 -0
  178. metadata +401 -0
@@ -0,0 +1,31 @@
1
+ =begin
2
+ ActiveSalesforce
3
+ Copyright 2006 Doug Chasman
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+ =end
17
+
18
+ require 'pp'
19
+
20
+
21
+ module ActiveSalesforce
22
+
23
+ class ResultArray < Array
24
+ attr_reader :actual_size
25
+
26
+ def initialize(actual_size)
27
+ @actual_size = actual_size
28
+ end
29
+ end
30
+
31
+ end
@@ -0,0 +1,57 @@
1
+ =begin
2
+ ActiveSalesforce
3
+ Copyright 2006 Doug Chasman
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+ =end
17
+
18
+ require 'set'
19
+ require 'pp'
20
+
21
+
22
+ module ActiveSalesforce
23
+
24
+ class SessionIDAuthenticationFilter
25
+ @@klasses = Set.new
26
+
27
+
28
+ def self.register(klass)
29
+ @@klasses.add(klass)
30
+ end
31
+
32
+
33
+ def self.filter(controller)
34
+ # Look to see if a SID was passed in the URL
35
+ params = controller.params
36
+ sid = params[:sid]
37
+
38
+ if sid
39
+ api_server_url = params[:api_server_url]
40
+
41
+ # Iterate over all classes that have registered for SID auth support
42
+ connection = nil
43
+ @@klasses.each do |klass|
44
+ unless connection
45
+ klass.establish_connection(:adapter => 'activesalesforce', :sid => sid, :url => api_server_url)
46
+ connection = klass.connection
47
+ else
48
+ klass = connection
49
+ end
50
+ end
51
+ end
52
+ end
53
+
54
+ end
55
+
56
+ end
57
+
@@ -0,0 +1 @@
1
+ require 'active_record/connection_adapters/activesalesforce_adapter.rb'
@@ -0,0 +1,34 @@
1
+ #require File.dirname(__FILE__) + asf-soap-adapter convenience classes.
2
+
3
+ require File.dirname(__FILE__) + '/salesforce/file_writer.rb'
4
+ require File.dirname(__FILE__) + '/salesforce/sf_base.rb'
5
+ require File.dirname(__FILE__) + '/salesforce/account.rb'
6
+ require File.dirname(__FILE__) + '/salesforce/account_feed.rb'
7
+ require File.dirname(__FILE__) + '/salesforce/asset.rb'
8
+ require File.dirname(__FILE__) + '/salesforce/asset_feed.rb'
9
+ require File.dirname(__FILE__) + '/salesforce/campaign.rb'
10
+ require File.dirname(__FILE__) + '/salesforce/campaign_feed.rb'
11
+ require File.dirname(__FILE__) + '/salesforce/case.rb'
12
+ require File.dirname(__FILE__) + '/salesforce/case_feed.rb'
13
+ require File.dirname(__FILE__) + '/salesforce/chatter_feed.rb' ###
14
+ require File.dirname(__FILE__) + '/salesforce/contact.rb'
15
+ require File.dirname(__FILE__) + '/salesforce/contact_feed.rb'
16
+ require File.dirname(__FILE__) + '/salesforce/contract.rb'
17
+ require File.dirname(__FILE__) + '/salesforce/contract_feed.rb'
18
+ require File.dirname(__FILE__) + '/salesforce/entity_subscription.rb'
19
+ require File.dirname(__FILE__) + '/salesforce/feed_comment.rb'
20
+ require File.dirname(__FILE__) + '/salesforce/feed_post.rb'
21
+ require File.dirname(__FILE__) + '/salesforce/feed_tracked_change.rb'
22
+ require File.dirname(__FILE__) + '/salesforce/group.rb'
23
+ require File.dirname(__FILE__) + '/salesforce/lead.rb'
24
+ require File.dirname(__FILE__) + '/salesforce/lead_feed.rb'
25
+ require File.dirname(__FILE__) + '/salesforce/news_feed.rb'
26
+ require File.dirname(__FILE__) + '/salesforce/opportunity.rb'
27
+ require File.dirname(__FILE__) + '/salesforce/opportunity_feed.rb'
28
+ require File.dirname(__FILE__) + '/salesforce/product2.rb'
29
+ require File.dirname(__FILE__) + '/salesforce/product2_feed.rb'
30
+ require File.dirname(__FILE__) + '/salesforce/solution.rb'
31
+ require File.dirname(__FILE__) + '/salesforce/solution_feed.rb'
32
+ require File.dirname(__FILE__) + '/salesforce/user.rb'
33
+ require File.dirname(__FILE__) + '/salesforce/user_feed.rb'
34
+ require File.dirname(__FILE__) + '/salesforce/user_profile_feed.rb'
@@ -0,0 +1,28 @@
1
+ =begin
2
+ asf-soap-adapter
3
+ Copyright 2010 Raymond Gao
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+ =end
17
+
18
+ # Salesforce package contains convenience classes for mapping Salesforce objects into
19
+ # ActiveRecord objects. The SfBase is the mother of all other objects. Additionally,
20
+ # SfUtitlity class provides several useful methods for manipulating SF objects.
21
+ module Salesforce
22
+ # See http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_list.htm
23
+ # For complete list of Salesforce Standard Objects in V20.
24
+ class Account < SfBase
25
+ #table name must match the Salesforce, or it does not work. This is a quirk of the ActiveSalesforce
26
+ set_table_name 'accounts'
27
+ end
28
+ end
@@ -0,0 +1,27 @@
1
+ =begin
2
+ asf-soap-adapter
3
+ Copyright 2010 Raymond Gao
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+ =end
17
+
18
+ # Salesforce package contains convenience classes for mapping Salesforce objects into
19
+ # ActiveRecord objects. The SfBase is the mother of all other objects. Additionally,
20
+ # SfUtitlity class provides several useful methods for manipulating SF objects.
21
+ module Salesforce
22
+ # See http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_list.htm
23
+ # For complete list of Salesforce Standard Objects in V20.
24
+ class AccountFeed < SfBase
25
+ set_table_name 'account_feeds'
26
+ end
27
+ end
@@ -0,0 +1,28 @@
1
+ =begin
2
+ asf-soap-adapter
3
+ Copyright 2010 Raymond Gao
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+ =end
17
+
18
+ # Salesforce package contains convenience classes for mapping Salesforce objects into
19
+ # ActiveRecord objects. The SfBase is the mother of all other objects. Additionally,
20
+ # SfUtitlity class provides several useful methods for manipulating SF objects.
21
+ module Salesforce
22
+ # See http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_list.htm
23
+ # For complete list of Salesforce Standard Objects in V20.
24
+ class ApexLog < SfBase
25
+ #table name must match the Salesforce, or it does not work. This is a quirk of the ActiveSalesforce
26
+ set_table_name 'apex_logs'
27
+ end
28
+ end
@@ -0,0 +1,27 @@
1
+ =begin
2
+ asf-soap-adapter
3
+ Copyright 2010 Raymond Gao
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+ =end
17
+
18
+ # Salesforce package contains convenience classes for mapping Salesforce objects into
19
+ # ActiveRecord objects. The SfBase is the mother of all other objects. Additionally,
20
+ # SfUtitlity class provides several useful methods for manipulating SF objects.
21
+ module Salesforce
22
+ # See http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_list.htm
23
+ # For complete list of Salesforce Standard Objects in V20.
24
+ class Asset < SfBase
25
+ set_table_name 'assets'
26
+ end
27
+ end
@@ -0,0 +1,27 @@
1
+ =begin
2
+ asf-soap-adapter
3
+ Copyright 2010 Raymond Gao
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+ =end
17
+
18
+ # Salesforce package contains convenience classes for mapping Salesforce objects into
19
+ # ActiveRecord objects. The SfBase is the mother of all other objects. Additionally,
20
+ # SfUtitlity class provides several useful methods for manipulating SF objects.
21
+ module Salesforce
22
+ # See http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_list.htm
23
+ # For complete list of Salesforce Standard Objects in V20.
24
+ class AssetFeed < SfBase
25
+ set_table_name 'asset_feeds'
26
+ end
27
+ end
@@ -0,0 +1,27 @@
1
+ =begin
2
+ asf-soap-adapter
3
+ Copyright 2010 Raymond Gao
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+ =end
17
+
18
+ # Salesforce package contains convenience classes for mapping Salesforce objects into
19
+ # ActiveRecord objects. The SfBase is the mother of all other objects. Additionally,
20
+ # SfUtitlity class provides several useful methods for manipulating SF objects.
21
+ module Salesforce
22
+ # See http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_list.htm
23
+ # For complete list of Salesforce Standard Objects in V20.
24
+ class Campaign < SfBase
25
+ set_table_name 'campaigns'
26
+ end
27
+ end
@@ -0,0 +1,27 @@
1
+ =begin
2
+ asf-soap-adapter
3
+ Copyright 2010 Raymond Gao
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+ =end
17
+
18
+ # Salesforce package contains convenience classes for mapping Salesforce objects into
19
+ # ActiveRecord objects. The SfBase is the mother of all other objects. Additionally,
20
+ # SfUtitlity class provides several useful methods for manipulating SF objects.
21
+ module Salesforce
22
+ # See http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_list.htm
23
+ # For complete list of Salesforce Standard Objects in V20.
24
+ class CampaignFeed < SfBase
25
+ set_table_name 'campaign_feeds'
26
+ end
27
+ end
@@ -0,0 +1,27 @@
1
+ =begin
2
+ asf-soap-adapter
3
+ Copyright 2010 Raymond Gao
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+ =end
17
+
18
+ # Salesforce package contains convenience classes for mapping Salesforce objects into
19
+ # ActiveRecord objects. The SfBase is the mother of all other objects. Additionally,
20
+ # SfUtitlity class provides several useful methods for manipulating SF objects.
21
+ module Salesforce
22
+ # See http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_list.htm
23
+ # For complete list of Salesforce Standard Objects in V20.
24
+ class Case < SfBase
25
+ set_table_name 'cases'
26
+ end
27
+ end
@@ -0,0 +1,27 @@
1
+ =begin
2
+ asf-soap-adapter
3
+ Copyright 2010 Raymond Gao
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+ =end
17
+
18
+ # Salesforce package contains convenience classes for mapping Salesforce objects into
19
+ # ActiveRecord objects. The SfBase is the mother of all other objects. Additionally,
20
+ # SfUtitlity class provides several useful methods for manipulating SF objects.
21
+ module Salesforce
22
+ # See http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_list.htm
23
+ # For complete list of Salesforce Standard Objects in V20.
24
+ class CaseFeed < SfBase
25
+ set_table_name 'case_feeds'
26
+ end
27
+ end
@@ -0,0 +1,28 @@
1
+ =begin
2
+ asf-soap-adapter
3
+ Copyright 2010 Raymond Gao
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+ =end
17
+
18
+ # Salesforce package contains convenience classes for mapping Salesforce objects into
19
+ # ActiveRecord objects. The SfBase is the mother of all other objects. Additionally,
20
+ # SfUtitlity class provides several useful methods for manipulating SF objects.
21
+ module Salesforce
22
+ # See http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_list.htm
23
+ # For complete list of Salesforce Standard Objects in V20.
24
+ class CaseTeamMember < SfBase
25
+ #table name must match the Salesforce, or it does not work. This is a quirk of the ActiveSalesforce
26
+ set_table_name 'case_team_members'
27
+ end
28
+ end
@@ -0,0 +1,28 @@
1
+ =begin
2
+ asf-soap-adapter
3
+ Copyright 2010 Raymond Gao
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+ =end
17
+
18
+ # Salesforce package contains convenience classes for mapping Salesforce objects into
19
+ # ActiveRecord objects. The SfBase is the mother of all other objects. Additionally,
20
+ # SfUtitlity class provides several useful methods for manipulating SF objects.
21
+ module Salesforce
22
+ # See http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_list.htm
23
+ # For complete list of Salesforce Standard Objects in V20.
24
+ class CaseTeamRole < SfBase
25
+ #table name must match the Salesforce, or it does not work. This is a quirk of the ActiveSalesforce
26
+ set_table_name 'case_team_roles'
27
+ end
28
+ end