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.actionitem; 017 018import javax.persistence.Entity; 019import javax.persistence.Table; 020 021/** 022 * Outbox item. An extension of {@link ActionItemActionListExtension} for OJB. 023 * 024 * @author Kuali Rice Team (rice.collab@kuali.org) 025 * 026 */ 027@Entity 028@Table(name="KREW_OUT_BOX_ITM_T") 029public class OutboxItem extends ActionItemBase { 030 031 private static final long serialVersionUID = 5776214610837858304L; 032 033 public OutboxItem() {} 034 035 public OutboxItem(ActionItem actionItem) { 036 this.setActionRequestCd(actionItem.getActionRequestCd()); 037 this.setActionRequestId(actionItem.getActionRequestId()); 038 this.setDateAssigned(actionItem.getDateAssigned()); 039 this.setDelegationType(actionItem.getDelegationType()); 040 this.setDelegatorPrincipalId(actionItem.getDelegatorPrincipalId()); 041 this.setDelegatorGroupId(actionItem.getDelegatorGroupId()); 042 this.setDocHandlerURL(actionItem.getDocHandlerURL()); 043 this.setDocLabel(actionItem.getDocLabel()); 044 this.setDocName(actionItem.getDocName()); 045 this.setDocTitle(actionItem.getDocTitle()); 046 this.setResponsibilityId(actionItem.getResponsibilityId()); 047 this.setRoleName(actionItem.getRoleName()); 048 this.setDocumentId(actionItem.getDocumentId()); 049 this.setPrincipalId(actionItem.getPrincipalId()); 050 this.setGroupId(actionItem.getGroupId()); 051 this.setRequestLabel(actionItem.getRequestLabel()); 052 } 053 054}