KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sslexplorer > policyframework > ResourceAttachedToPolicyEvent


1 /*
2  * SSL-Explorer
3  *
4  * Copyright (C) 2003-2006 3SP LTD. All Rights Reserved
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2 of
9  * the License, or (at your option) any later version.
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */

19             
20 package com.sslexplorer.policyframework;
21
22 import com.sslexplorer.core.CoreAttributeConstants;
23 import com.sslexplorer.core.CoreEvent;
24 import com.sslexplorer.core.CoreEventConstants;
25 import com.sslexplorer.security.SessionInfo;
26
27 /**
28  * Extension of a {@link com.sslexplorer.core.CoreEvent} that should be
29  * used when a {@link Resource} is attached to a {@link com.sslexplorer.policyframework.Policy}.
30  *
31  * @author Brett Smith <a HREF="mailto: brett@3sp.com">&lt;brett@3sp.com&gt;</a>
32  */

33 public class ResourceAttachedToPolicyEvent extends CoreEvent {
34
35     Resource resource;
36     Policy policy;
37     
38     /**
39      * Constructor
40      *
41      * @param source source of event
42      * @param resource resource
43      * @param policy policy
44      * @param session session that fired the event
45      * @param state event state
46      */

47     public ResourceAttachedToPolicyEvent(Object JavaDoc source, Resource resource, Policy policy,
48                     SessionInfo session, int state) {
49         super(source, CoreEventConstants.RESOURCE_ATTACHED_TO_POLICY, resource, session, state);
50         this.resource = resource;
51         this.policy = policy;
52         addAttribute(CoreAttributeConstants.EVENT_ATTR_RESOURCE_NAME, resource.getResourceName());
53         addAttribute(CoreAttributeConstants.EVENT_ATTR_POLICY_NAME, policy.getResourceName());
54     }
55
56     /**
57      * Get the policy resource access was attempted under. This will only be
58      * available on successful events
59      *
60      * @return policy
61      */

62     public Policy getPolicy() {
63         return policy;
64     }
65
66     /**
67      * Get the resource. This will only be available on successful events
68      *
69      * @return resource
70      */

71     public Resource getResource() {
72         return resource;
73     }
74 }
75
Popular Tags