Coverage Report - org.kuali.student.enrollment.lpr.dto.LuiPersonRelationTransactionItemResultInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
LuiPersonRelationTransactionItemResultInfo
0%
0/10
N/A
1
 
 1  
 /*
 2  
  * Copyright 2007 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 1.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/ecl1.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 permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.student.enrollment.lpr.dto;
 17  
 
 18  
 import java.io.Serializable;
 19  
 import java.util.List;
 20  
 
 21  
 import javax.xml.bind.annotation.XmlAnyElement;
 22  
 
 23  
 import org.kuali.student.enrollment.lpr.infc.LuiPersonRelationTransactionItemResult;
 24  
 import org.w3c.dom.Element;
 25  
 
 26  
 /**
 27  
  * This is a description of what this class does - sambitpatnaik don't forget to fill this in. 
 28  
  * 
 29  
  * @author Kuali Student Team (sambitpatnaik)
 30  
  *
 31  
  */
 32  0
 public class LuiPersonRelationTransactionItemResultInfo implements LuiPersonRelationTransactionItemResult, Serializable {
 33  
 
 34  
     private static final long serialVersionUID = 1L;
 35  
 
 36  
     private String resultingLprId;
 37  
     
 38  
     private List<String> messages;
 39  
     
 40  
     private String status;
 41  
     
 42  
     @XmlAnyElement
 43  
     private List<Element> _futureElements;
 44  
 
 45  
 
 46  
     public void setResultingLprId(String resultingLprId) {
 47  0
         this.resultingLprId = resultingLprId;
 48  0
     }
 49  
 
 50  
     public void setMessages(List<String> messages) {
 51  0
         this.messages = messages;
 52  0
     }
 53  
 
 54  
     public void setStatus(String status) {
 55  0
         this.status = status;
 56  0
     }
 57  
     
 58  
     @Override
 59  
     public String getResultingLprId() {
 60  0
         return resultingLprId;
 61  
     }
 62  
 
 63  
     @Override
 64  
     public List<String> getMessages() {
 65  0
         return messages;
 66  
     }
 67  
 
 68  
     @Override
 69  
     public String getStatus() {
 70  0
         return status;
 71  
     }
 72  
 
 73  
 }