View Javadoc

1   /*
2    * Copyright 2007-2009 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing members and
14   * limitations under the License.
15   */
16  package org.kuali.rice.kim.rule.event.ui;
17  
18  import org.kuali.rice.kim.bo.ui.GroupDocumentMember;
19  import org.kuali.rice.kim.document.IdentityManagementGroupDocument;
20  import org.kuali.rice.kim.rule.ui.AddGroupMemberRule;
21  import org.kuali.rice.kim.rule.ui.AddMemberRule;
22  import org.kuali.rice.kns.document.Document;
23  import org.kuali.rice.kns.rule.BusinessRule;
24  import org.kuali.rice.kns.rule.event.KualiDocumentEventBase;
25  import org.kuali.rice.kns.util.ObjectUtils;
26  
27  /**
28   * This is a description of what this class does - shyu don't forget to fill this in. 
29   * 
30   * @author Kuali Rice Team (rice.collab@kuali.org)
31   *
32   */
33  public class AddGroupMemberEvent extends KualiDocumentEventBase {
34  	private GroupDocumentMember member;
35  
36  	public AddGroupMemberEvent(String errorPathPrefix, IdentityManagementGroupDocument document) {
37          super("Adding Group Member Document " + getDocumentId(document), errorPathPrefix, document);
38      }
39  
40      public AddGroupMemberEvent(String errorPathPrefix, Document document, GroupDocumentMember member) {
41          this(errorPathPrefix, (IdentityManagementGroupDocument) document);
42          this.member = (GroupDocumentMember) ObjectUtils.deepCopy(member);
43      }
44  
45      public Class getRuleInterfaceClass() {
46          return AddGroupMemberRule.class;
47      }
48  
49      public boolean invokeRuleMethod(BusinessRule rule) {
50          return ((AddGroupMemberRule) rule).processAddGroupMember(this);
51      }
52  
53  	/**
54  	 * @return the member
55  	 */
56  	public GroupDocumentMember getMember() {
57  		return this.member;
58  	}
59  
60  	/**
61  	 * @param member the member to set
62  	 */
63  	public void setMember(GroupDocumentMember member) {
64  		this.member = member;
65  	}
66  
67  }