001/** 002 * Copyright 2005-2016 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 */ 016package org.kuali.rice.kew.actions; 017 018import org.kuali.rice.kew.engine.BlanketApproveEngine; 019import org.kuali.rice.kim.api.identity.principal.PrincipalContract; 020 021 022/** 023 * Used to determine store notifications to be sent in the {@link BlanketApproveEngine}. 024 * 025 * @author Kuali Rice Team (rice.collab@kuali.org) 026 */ 027public class NotificationContext { 028 029 private String notificationRequestCode; 030 private PrincipalContract principalTakingAction; 031 private String actionTakenCode; 032 033 public NotificationContext(String notificationRequestCode, PrincipalContract principalTakingAction, String actionTakenCode) { 034 this.notificationRequestCode = notificationRequestCode; 035 this.principalTakingAction = principalTakingAction; 036 this.actionTakenCode = actionTakenCode; 037 } 038 039 public String getActionTakenCode() { 040 return actionTakenCode; 041 } 042 043 public String getNotificationRequestCode() { 044 return notificationRequestCode; 045 } 046 047 public PrincipalContract getPrincipalTakingAction() { 048 return principalTakingAction; 049 } 050 051 052 053}