Skip to content

Instantly share code, notes, and snippets.

@bittersweetryan
Created October 14, 2010 19:36
Show Gist options
  • Save bittersweetryan/626871 to your computer and use it in GitHub Desktop.
Save bittersweetryan/626871 to your computer and use it in GitHub Desktop.
<!-- snippit from coldspring.xml -->
<bean id="JobDelegateTarget" class="com.idl.app.warm.cfobj.Job.JobDelegate" singleton="true" />
<bean id="JobDelegate" class="coldspring.aop.framework.ProxyFactoryBean">
<property name="target">
<ref bean="JobDelegateTarget" />
</property>
<property name="interceptorNames">
<list>
<value>DocumentTemplateAdvisor</value>
</list>
</property>
</bean>
<cffunction name="SetJobDelegate" returntype="void" output="false">
<cfargument name="JobDelegate" type="com.idl.app.warm.cfobj.Job.JobDelegate" />
<cfset variables.JobDelegate = arguments.JobDelegate />
</cffunction>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment