KickJava   Java API By Example, From Geeks To Geeks.

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


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 detached from 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 ResourceDetachedFromPolicyEvent extends CoreEvent {
34
35     
36     Resource resource;
37     Policy policy;
38     
39     /**
40      * Constructor
41      *
42      * @param source source of event
43      * @param resource resource
44      * @param policy policy
45      * @param session session that fired the event
46      * @param state event state
47      */

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

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

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