38 lines
832 B
Plaintext
38 lines
832 B
Plaintext
<cfcomponent extends="taffy.core.resource" taffy:uri="/echo/tunnel/{id}">
|
|
|
|
<cffunction name="get">
|
|
<cfargument name="id" />
|
|
|
|
<cfset var echo = {} />
|
|
<cfset echo.actualMethod = "get" />
|
|
|
|
<cfreturn representationOf(echo) />
|
|
</cffunction>
|
|
|
|
<cffunction name="put">
|
|
<cfargument name="id" />
|
|
|
|
<cfset var echo = {} />
|
|
<cfset echo.actualMethod = "put" />
|
|
|
|
<cfreturn representationOf(echo).withStatus(200) />
|
|
</cffunction>
|
|
|
|
<cffunction name="post">
|
|
<cfargument name="id" />
|
|
|
|
<cfset var echo = {} />
|
|
<cfset echo.actualMethod = "post" />
|
|
|
|
<cfreturn representationOf(echo).withStatus(201) />
|
|
</cffunction>
|
|
|
|
<cffunction name="delete">
|
|
<cfargument name="id" />
|
|
|
|
<cfset var echo = {} />
|
|
<cfset echo.actualMethod = "delete" />
|
|
|
|
<cfreturn representationOf(echo).withStatus(200) />
|
|
</cffunction>
|
|
</cfcomponent> |