Coverage Report - org.kuali.student.common.dto.SearchParamInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
SearchParamInfo
0%
0/14
0%
0/2
1.083
SearchParamInfo$Builder
0%
0/15
N/A
1.083
 
 1  
 /**
 2  
  * Copyright 2011 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the
 5  
  * "License"); you may not use this file except in compliance with the
 6  
  * License. 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
 13  
  * implied. See the License for the specific language governing
 14  
  * permissions and limitations under the License.
 15  
  */
 16  
 
 17  
 package org.kuali.student.common.dto;
 18  
 
 19  
 import java.io.Serializable;
 20  
 import java.util.ArrayList;
 21  
 import java.util.Arrays;
 22  
 import java.util.List;
 23  
 
 24  
 import javax.xml.bind.annotation.XmlAccessType;
 25  
 import javax.xml.bind.annotation.XmlAccessorType;
 26  
 import javax.xml.bind.annotation.XmlAnyElement;
 27  
 import javax.xml.bind.annotation.XmlAttribute;
 28  
 import javax.xml.bind.annotation.XmlElement;
 29  
 import javax.xml.bind.annotation.XmlElementWrapper;
 30  
 import javax.xml.bind.annotation.XmlType;
 31  
 
 32  
 import org.kuali.student.common.infc.ModelBuilder;
 33  
 import org.kuali.student.common.infc.SearchParam;
 34  
 import org.w3c.dom.Element;
 35  
 
 36  
 /**
 37  
  * Search Parameter
 38  
  *
 39  
  * A structure that holds a key value pair to supply a value to a parameter for searching.
 40  
  *
 41  
  * @author nwright
 42  
  */
 43  
 @XmlAccessorType(XmlAccessType.FIELD)
 44  
 @XmlType(name = "SearchParamInfo", propOrder = {"key", "values", "_futureElements"})
 45  
 public class SearchParamInfo implements SearchParam, Serializable {
 46  
 
 47  
     private static final long serialVersionUID = 1L;
 48  
     @XmlAttribute
 49  
     private final String key;
 50  
     @XmlElementWrapper(name="values")
 51  
     @XmlElement(name="value")
 52  
     private final List<String> values;
 53  
     @XmlAnyElement
 54  
     private final List<Element> _futureElements;
 55  
 
 56  
     
 57  0
     public SearchParamInfo() {
 58  0
         this.key = null;
 59  0
         this.values = null;
 60  0
         this._futureElements = null;
 61  0
     }
 62  
 
 63  0
     public SearchParamInfo(SearchParam infc) {
 64  0
         this.key = infc.getKey();
 65  0
         if (this.values == null) {
 66  0
             this.values = null;
 67  
         } else {
 68  0
             this.values = new ArrayList(infc.getValues());
 69  
         }
 70  0
         this._futureElements = null;
 71  0
     }
 72  
 
 73  
     @Override
 74  
     public List<String> getValues() {
 75  0
         return values;
 76  
     }
 77  
 
 78  
     @Override
 79  
     public String getKey() {
 80  0
         return key;
 81  
     }
 82  
 
 83  0
     public static class Builder implements ModelBuilder<SearchParamInfo>, SearchParam {
 84  
 
 85  
         private String key;
 86  
         private List<String> values;
 87  
 
 88  0
         public Builder() {}
 89  
         
 90  0
         public Builder(SearchParam searchInfo) {
 91  0
             this.key = searchInfo.getKey();
 92  0
             this.values = searchInfo.getValues();
 93  0
         }
 94  
         
 95  
         public SearchParamInfo build () {
 96  0
             return new SearchParamInfo (this);
 97  
         }
 98  
         
 99  
         public String getKey() {
 100  0
             return key;
 101  
         }
 102  
 
 103  
         public void setKey(String key) {
 104  0
             this.key = key;
 105  0
         }
 106  
 
 107  
         public List<String> getValues() {
 108  0
             return values;
 109  
         }
 110  
 
 111  
         public void setValues(List<String> values) {
 112  0
             this.values = values;
 113  0
         }
 114  
 
 115  
         /**
 116  
          * Convenience method for setting a single value
 117  
          * Actually stores it as a list with one value.
 118  
          * @param value
 119  
          */
 120  
         public Builder value(String value) {
 121  0
             this.values = Arrays.asList(value);
 122  0
             return this;
 123  
         }
 124  
     }
 125  
 }