aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs167/pr293457/com/citi/gdos/smart/applib/service/cache/CachingIntroduction.aj
blob: 33c99defb0ba97606edf2a801e1f5c56ef223442 (plain)
1
2
3
4
5
6
7
8
9
10
11
 package com.citi.gdos.smart.applib.service.cache;
	
	 import org.springmodules.cache.annotations.Cacheable;
	
	 public aspect CachingIntroduction {
	
	        declare @method: public * *..I*Dao+.set*(..): @Setter; 
	        declare @method: !@Setter public * *..I*Dao+.*(..):
	                @Cacheable(modelId="fooModel");
	
	 }