The @JoinPoint annotation would actually contains 4 members:
/**
| * @author <a href="mailto:julien@jboss.org">Julien Viet</a>
| * @version $Revision: 1.1 $
| */
| public @interface JoinPoint
| {
|
| /**
| * The request count.
| *
| * @return the request count
| */
| int count() default 0;
|
| /**
| * The portlet id.
| *
| * @return the portlet id
| */
| String portletId();
|
| /**
| * The node id.
| *
| * @return the node id
| */
| NodeId node() default NodeId.DEFAULT;
|
| /**
| * The phase id.
| *
| * @return the phase id
| */
| PhaseId phase() default PhaseId.RENDER;
| }
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4098219#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...