Show jboss-aop.xml syntax highlighted
<?xml version="1.0" encoding="UTF-8"?>
<aop>
<!-- This is declaration file for JDK50 annotation.
Idea is user will then need only to annotate like:
@org.jboss.cache.aop.annotation.PojoCacheable
in his POJO. There will be no need of jboss-aop.xml from user's side.
For example, see either Address or Person.
-->
<!-- If a POJO has PojoCachable annotation, it will be asepctized.
<prepare expr="field(* @org.jboss.cache.aop.annotation.PojoCacheable->*)" />
-->
<!--
Supports inheritance and polymorphism. It can either be a concrete class
or an interface. All sub-classes or interface implementors will be instrumeneted.
<prepare expr="field(* $instanceof{@org.jboss.cache.aop.annotation.InstanceOfPojoCacheable}->*)" />
-->
<prepare expr="field(* fi.hip.gb.disk.info.FileInfoBean->*)" />
<prepare expr="field(* fi.hip.gb.disk.info.StripeInfoBean->*)" />
<prepare expr="field(* fi.hip.gb.disk.info.UserBean->*)" />
</aop>
See more files for this project here