Coverage Report - org.kuali.student.enrollment.classI.hold.dto.RestrictionInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
RestrictionInfo
0%
0/6
N/A
1
RestrictionInfo$Builder
0%
0/6
N/A
1
 
 1  
 /*
 2  
  * Copyright 2010 The Kuali Foundation Licensed under the
 3  
  * Educational Community License, Version 2.0 (the "License"); you may
 4  
  * not use this file except in compliance with the License. You may
 5  
  * obtain a copy of the License at
 6  
  *
 7  
  * http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing,
 10  
  * software distributed under the License is distributed on an "AS IS"
 11  
  * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  * or implied. See the License for the specific language governing
 13  
  * permissions and limitations under the License.
 14  
  */
 15  
 package org.kuali.student.enrollment.classI.hold.dto;
 16  
 
 17  
 import java.io.Serializable;
 18  
 import java.util.Date;
 19  
 import java.util.List;
 20  
 import org.w3c.dom.Element;
 21  
 
 22  
 import javax.xml.bind.annotation.XmlAccessType;
 23  
 import javax.xml.bind.annotation.XmlAccessorType;
 24  
 import javax.xml.bind.annotation.XmlAnyElement;
 25  
 import javax.xml.bind.annotation.XmlElement;
 26  
 
 27  
 import javax.xml.bind.annotation.XmlType;
 28  
 
 29  
 import org.kuali.student.r2.common.dto.KeyEntityInfo;
 30  
 import org.kuali.student.r2.common.infc.ModelBuilder;
 31  
 import org.kuali.student.enrollment.classI.hold.infc.Restriction;
 32  
 
 33  
 @XmlAccessorType(XmlAccessType.FIELD)
 34  
 @XmlType(name = "RestrictionInfo", propOrder = {"key", "typeKey", "stateKey", "name", "descr", "metaInfo", "attributes", "_futureElements"})
 35  
 
 36  
 public class RestrictionInfo extends KeyEntityInfo implements Restriction, Serializable {
 37  
     private static final long serialVersionUID = 1L;
 38  
 
 39  
     @XmlAnyElement
 40  
     private final List<Element> _futureElements;
 41  
 
 42  0
     private RestrictionInfo() {
 43  0
         _futureElements = null;
 44  0
     }
 45  
 
 46  
     /**
 47  
      * Constructs a new RestrictionInfo from another Restriction.
 48  
      *
 49  
      * @param restriction the Restriction to copy
 50  
      */
 51  
     public RestrictionInfo(Restriction restriction) {
 52  0
         super(restriction);
 53  0
         _futureElements = null;
 54  0
     }
 55  
 
 56  
 
 57  
     /**
 58  
      * The builder class for this RestrictionInfo.
 59  
      */
 60  0
     public static class Builder extends KeyEntityInfo.Builder implements ModelBuilder<RestrictionInfo>, Restriction {
 61  
 
 62  
         /**
 63  
          * Constructs a new builder.
 64  
          */
 65  0
         public Builder() {
 66  0
         }
 67  
 
 68  
         /**
 69  
          * Constructs a new builder initialized from another 
 70  
          * Restriction.
 71  
          */
 72  
         public Builder(Restriction restriction) {
 73  0
             super(restriction);
 74  0
         }
 75  
 
 76  
         @Override
 77  
         public RestrictionInfo build() {
 78  0
             return new RestrictionInfo(this);
 79  
         }
 80  
     }
 81  
 }