Changeset 781 for framework/1-6-0/trunk/framework/commands/CacheCommand.cfc
- Timestamp:
- 05/13/2008 12:39:10 AM (22 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
framework/1-6-0/trunk/framework/commands/CacheCommand.cfc
r771 r781 43 43 <cffunction name="init" access="public" returntype="CacheCommand" output="false" 44 44 hint="Initializes the command."> 45 <cfargument name="handlerId" type=" uuid" required="false" default="#CreateUUID()#" />45 <cfargument name="handlerId" type="string" required="false" default="#CreateUUID()#" /> 46 46 <cfargument name="cacheName" type="string" required="false" default="" /> 47 47 <cfargument name="alias" type="string" required="false" default="" /> … … 91 91 ---> 92 92 <cffunction name="setHandlerId" access="private" returntype="void" output="false"> 93 <cfargument name="handlerId" type=" uuid" required="true" />93 <cfargument name="handlerId" type="string" required="true" /> 94 94 <cfset variables.handlerId = arguments.handlerId /> 95 95 </cffunction> 96 <cffunction name="getHandlerId" access="private" returntype=" uuid" output="false">96 <cffunction name="getHandlerId" access="private" returntype="string" output="false"> 97 97 <cfreturn variables.handlerId /> 98 98 </cffunction>
