001 /* 002 * Copyright 2007-2008 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 package org.kuali.rice.kim.rule.event.ui; 017 018 import org.kuali.rice.kim.bo.ui.PersonDocumentRole; 019 import org.kuali.rice.kim.document.IdentityManagementPersonDocument; 020 import org.kuali.rice.kim.rule.ui.AddRoleRule; 021 import org.kuali.rice.kns.document.Document; 022 import org.kuali.rice.kns.rule.BusinessRule; 023 import org.kuali.rice.kns.rule.event.KualiDocumentEventBase; 024 025 /** 026 * This is a description of what this class does - shyu don't forget to fill this in. 027 * 028 * @author Kuali Rice Team (rice.collab@kuali.org) 029 * 030 */ 031 public class AddRoleEvent extends KualiDocumentEventBase { 032 private PersonDocumentRole role; 033 034 public AddRoleEvent(String errorPathPrefix, IdentityManagementPersonDocument document) { 035 super("adding role document " + getDocumentId(document), errorPathPrefix, document); 036 } 037 038 public AddRoleEvent(String errorPathPrefix, Document document, PersonDocumentRole role) { 039 this(errorPathPrefix, (IdentityManagementPersonDocument) document); 040 this.role = role; 041 } 042 043 public Class<? extends BusinessRule> getRuleInterfaceClass() { 044 return AddRoleRule.class; 045 } 046 047 public boolean invokeRuleMethod(BusinessRule rule) { 048 return ((AddRoleRule) rule).processAddRole(this); 049 } 050 051 public PersonDocumentRole getRole() { 052 return this.role; 053 } 054 055 public void setRole(PersonDocumentRole role) { 056 this.role = role; 057 } 058 059 060 }