> Thanks Peter! This is much better.
>
> I think I found a typo in abstractEndpoint:
>
> <cffunction name="isAuthenticationRequiredDefined" access="public"
> returntype="boolean" output="false">
> <cfreturn variables.isAuthenticationRequiredDefined />
> </cffunction>
>
> I think that's suppose to be "getIsAuthenticationRequiredDefined".
No typo... we were following isXDefined() and
isIsAuthenticationRequiredDefine() just seemed a bit too literal so I
left it as is:
<cffunction name="setIsOnAuthenticateDefined" access="public"
returntype="void" output="false">
<cfargument name="isOnAuthenticateDefined" type="boolean"
required="true" />
<cfset variables.isOnAuthenticateDefined =
arguments.isOnAuthenticateDefined />
</cffunction>
<cffunction name="isOnAuthenticateDefined" access="public"
returntype="boolean" output="false">
<cfreturn variables.isOnAuthenticateDefined />
</cffunction>
<cffunction name="setIsAuthenticationRequiredDefined"
access="public" returntype="void" output="false">
<cfargument name="isAuthenticationRequiredDefined"
type="boolean" required="true" />
<cfset variables.isAuthenticationRequiredDefined =
arguments.isAuthenticationRequiredDefined />
</cffunction>
<cffunction name="isAuthenticationRequiredDefined" access="public"
returntype="boolean" output="false">
<cfreturn variables.isAuthenticationRequiredDefined />
</cffunction>
--
Peter J. Farrell
[email protected]
[email protected]
http://blog.maestropublishing.com
Identi.ca / Twitter: @maestrofjp
--
To post to this group, send email to [email protected]
For more options and to unsubscribe, visit this group at
http://groups.google.com/group/mach-ii-for-coldfusion?hl=en
SVN: http://svn.mach-ii.com/machii/
Wiki / Documentation / Tickets: http://trac.mach-ii.com/machii/