-
Recent Posts
Archives
Categories
Tags
- Adapter Pattern
- Administration
- Apex
- Apex Method of the Day
- Approvals
- Batch Apex
- Careers
- Chrome
- Controller
- Customer Portal
- Dreamforce
- Dynamic Binding
- Field Set
- FinancialForce
- FinancialForce.com
- Force.com Site
- Heroku
- Hierarchical Custom Setting
- Identity Provider
- Interface
- ISV
- JSON
- Locking
- Managed Package
- message-driven-architecture
- OAuth
- Orizuru
- Plugin
- Productivity
- Security
- SObject
- SObject Secret Life
- Triggers
- Visualforce
Top Posts & Pages
RSS
Tag Archives: JSON
LockingRules
Recently I was working on a prototype Force.com application for which I anticipated heavy use of Salesforce Approvals Processes. When testing my prototype, I found the record locking system with Approvals fell short of what I wanted – I needed … Continue reading
Apex Method of the Day – JSON.deserialize(jsonString, List.class)
List<Foo> f = (List<Foo>) JSON.deserialize(jsonString, List<Foo>.class); Force.com Apex Code Developer’s Guide – JSON Methods Original Tweet