| | 92 | <!------------------------------------------- PRIVATE METHODS -------------------------------------------> |
| | 93 | |
| | 94 | <!--- Get Context ---> |
| | 95 | <cffunction name="getContext" access="private" returntype="coldbox.system.beans.RequestContext" hint="Retrieve the request context object" output="false" > |
| | 96 | <cfreturn controller.getRequestService().getContext()> |
| | 97 | </cffunction> |
| | 98 | |
| | 99 | <!--- Get RC ---> |
| | 100 | <cffunction name="getRC" access="private" returntype="struct" hint="Get a reference to the request collection" output="false" > |
| | 101 | <cfreturn getContext().getCollection()> |
| | 102 | </cffunction> |
| | 103 | |