Links
- ColdFusion Design Patterns
- Minecraft Papercraft Minecraft Fan? You might like my newish Minecraft Papercraft site!
- Object Oriented ColdFusion
Pages
Categories
Tags
Abstraction Ant Apache Autocomplete CFCUnit CodexWiki ColdFusion Components Constants CSS DAO Dates Dependency Injection Design Patterns File Flash Forms Frameworks Gateways Groovy Guice Hosting HTML IIS Java JavaScript jQuery Mappings MSSQL MySQL Nested Set Trees OOP pagination Python Railo Security SES URLs Spring Strategy Timestamp Tomcat Tools Ubuntu Unit Testing ValidationArchives
- February 2012
- June 2011
- February 2011
- January 2011
- December 2010
- September 2010
- July 2010
- May 2010
- April 2010
- November 2009
- July 2009
- June 2009
- August 2008
- June 2008
- May 2008
- March 2008
- November 2007
- October 2007
- September 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
Category Archives: OOP
Simple Object Oriented Security in ColdFusion (Version 2)
Some thoughts on implementing simple object oriented security in ColdFusion. This entry is a result of great feedback I received from my previous entry. What primary objects do we need? There are two main objects that we need – User and SecurityService. There are a couple of other objects that will assist with the security [...]
Simple Object Oriented Form Handling
This entry has been updated over at the revised Object Oriented Form handling entry. Some thoughts on handling forms using object oriented techniques. In particular, how to handle the creation of new data, editing, validating and saving it to a database. Trying to keep things simple … These notes mostly describe the creation of a [...]
The Strategy Design Pattern in ColdFusion
Thoughts on the Strategy design pattern specific to ColdFusion and it’s typeless nature. What is the Strategy design pattern? Suppose you have an object A which needs to use another object B. [A] — uses —> [B] Then a different situation requires that you need to exchange B for another object C; so object A [...]
Implementing Simple Object Oriented Security in ColdFusion
I have written up a new version of this entry which has some better techniques for implementing ColdFusion security. Presumably, an object oriented technique for handling security would start with a single component that provides all of the functions we need, such as validating a login, testing if a person is currently logged in, and [...]

DAOs and Gateways in ColdFusion