Coverage Report - org.kuali.rice.krms.api.repository.PropositionParameter
 
Classes in this File Line Coverage Branch Coverage Complexity
PropositionParameter
0%
0/24
N/A
1.519
PropositionParameter$1
N/A
N/A
1.519
PropositionParameter$Builder
0%
0/41
0%
0/14
1.519
PropositionParameter$Constants
0%
0/2
N/A
1.519
PropositionParameter$Elements
0%
0/1
N/A
1.519
PropositionParameter$ParameterTypes
0%
0/11
N/A
1.519
 
 1  
 package org.kuali.rice.krms.api.repository;
 2  
 
 3  
 import java.io.Serializable;
 4  
 import java.util.Arrays;
 5  
 import java.util.Collection;
 6  
 import java.util.Collections;
 7  
 
 8  
 import javax.xml.bind.annotation.XmlAccessType;
 9  
 import javax.xml.bind.annotation.XmlAccessorType;
 10  
 import javax.xml.bind.annotation.XmlAnyElement;
 11  
 import javax.xml.bind.annotation.XmlElement;
 12  
 import javax.xml.bind.annotation.XmlRootElement;
 13  
 import javax.xml.bind.annotation.XmlType;
 14  
 
 15  
 import org.apache.commons.lang.StringUtils;
 16  
 import org.apache.commons.lang.builder.EqualsBuilder;
 17  
 import org.apache.commons.lang.builder.HashCodeBuilder;
 18  
 import org.apache.commons.lang.builder.ToStringBuilder;
 19  
 import org.kuali.rice.core.api.CoreConstants;
 20  
 import org.kuali.rice.core.api.mo.ModelBuilder;
 21  
 import org.kuali.rice.core.api.mo.ModelObjectComplete;
 22  
 
 23  
 /**
 24  
  * Concrete model object implementation of KRMS Proposition Parameter 
 25  
  * immutable. 
 26  
  * Instances of PropositionParameter can be (un)marshalled to and from XML.
 27  
  *
 28  
  * @see PropositionParameterContract
 29  
  */
 30  
 @XmlRootElement(name = PropositionParameter.Constants.ROOT_ELEMENT_NAME)
 31  
 @XmlAccessorType(XmlAccessType.NONE)
 32  
 @XmlType(name = PropositionParameter.Constants.TYPE_NAME, propOrder = {
 33  
                 PropositionParameter.Elements.ID,
 34  
                 PropositionParameter.Elements.PROP_ID,
 35  
                 PropositionParameter.Elements.VALUE,
 36  
                 PropositionParameter.Elements.PARM_TYPE,
 37  
                 PropositionParameter.Elements.SEQUENCE,
 38  
                 CoreConstants.CommonElements.FUTURE_ELEMENTS
 39  
 })
 40  0
 public final class PropositionParameter implements PropositionParameterContract, ModelObjectComplete{
 41  
         private static final long serialVersionUID = 2783959459503209577L;
 42  
 
 43  
         @XmlElement(name = Elements.ID, required=true)
 44  
         private String id;
 45  
         @XmlElement(name = Elements.PROP_ID, required=true)
 46  
         private String propId;
 47  
         @XmlElement(name = Elements.VALUE, required=true)
 48  
         private String value;
 49  
         @XmlElement(name = Elements.PARM_TYPE, required=true)
 50  
         private String parameterType;
 51  
         @XmlElement(name = Elements.SEQUENCE, required=true)
 52  
         private Integer sequenceNumber;
 53  
         
 54  0
         @SuppressWarnings("unused")
 55  
     @XmlAnyElement
 56  
     private final Collection<org.w3c.dom.Element> _futureElements = null;
 57  
         
 58  
          /** 
 59  
      * This constructor should never be called.  
 60  
      * It is only present for use during JAXB unmarshalling. 
 61  
      */
 62  0
     private PropositionParameter() {
 63  0
             this.id = null;
 64  0
             this.propId = null;
 65  0
             this.value = null;
 66  0
             this.parameterType = null;
 67  0
             this.sequenceNumber = null;
 68  0
     }
 69  
     
 70  
     /**
 71  
          * Constructs a PropositionParameter from the given builder.  
 72  
          * This constructor is private and should only ever be invoked from the builder.
 73  
          * 
 74  
          * @param builder the Builder from which to construct the PropositionParameter
 75  
          */
 76  0
     private PropositionParameter(Builder builder) {
 77  0
         this.id = builder.getId();
 78  0
         this.propId = builder.getPropId();
 79  0
         this.value = builder.getValue();
 80  0
         this.parameterType = builder.getParameterType();
 81  0
         this.sequenceNumber = builder.getSequenceNumber();
 82  0
     }
 83  
     
 84  
         @Override
 85  
         public String getId() {
 86  0
                 return this.id;
 87  
         }
 88  
         
 89  
         @Override
 90  
         public String getPropId() {
 91  0
                 return this.propId;
 92  
         }
 93  
 
 94  
         @Override
 95  
         public String getValue() {
 96  0
                 return this.value;
 97  
         }
 98  
 
 99  
         @Override
 100  
         public String getParameterType() {
 101  0
                 return this.parameterType;
 102  
         }
 103  
         @Override
 104  
         public Integer getSequenceNumber() {
 105  0
                 return this.sequenceNumber; 
 106  
         }
 107  
 
 108  
         /**
 109  
      * This builder is used to construct instances of PropositionParameter.  
 110  
      * It enforces the constraints of the {@link PropositionParameterContract}.
 111  
      */
 112  0
     public static class Builder implements PropositionParameterContract, ModelBuilder, Serializable {
 113  
             private static final long serialVersionUID = -6889320709850568900L;
 114  
                 
 115  
                 private String id;
 116  
         private String propId;
 117  
         private String value;
 118  
         private String parameterType;
 119  
         private Integer sequenceNumber;
 120  
 
 121  
                 /**
 122  
                  * Private constructor for creating a builder with all of it's required attributes.
 123  
                  */
 124  0
         private Builder(String id, String propId, String value, String parameterType, Integer sequenceNumber) {
 125  0
             setId(id);
 126  0
             setPropId(propId);
 127  0
             setValue(value);
 128  0
             setParameterType(parameterType);
 129  0
                         setSequenceNumber(sequenceNumber);
 130  0
         }
 131  
 
 132  
         public static Builder create(String id, String propId, String value, String parameterType, Integer sequenceNumber) {
 133  0
                 return new Builder(id, propId, value, parameterType, sequenceNumber);
 134  
         }
 135  
 
 136  
         /**
 137  
          * Creates a builder by populating it with data from the given {@link PropositionParameterContract}.
 138  
          * 
 139  
          * @param contract the contract from which to populate this builder
 140  
          * @return an instance of the builder populated with data from the contract
 141  
          */
 142  
         public static Builder create(PropositionParameterContract contract) {
 143  0
                 if (contract == null) {
 144  0
                 throw new IllegalArgumentException("contract is null");
 145  
             }
 146  0
             Builder builder =  new Builder(contract.getId(), contract.getPropId(), contract.getValue(), contract.getParameterType(), contract.getSequenceNumber());
 147  0
             return builder;
 148  
         }
 149  
 
 150  
                 /**
 151  
                  * Sets the value of the id on this builder to the given value.
 152  
                  * 
 153  
                  * @param id the id value to set, must not be null or blank
 154  
                  * @throws IllegalArgumentException if the id is null or blank
 155  
                  */
 156  
         public void setId(String id) {
 157  0
             if (StringUtils.isBlank(id)) {
 158  0
                 throw new IllegalArgumentException("id is blank");
 159  
             }
 160  0
             this.id = id;
 161  0
         }
 162  
 
 163  
                 public void setPropId(String propId) {
 164  0
             if (StringUtils.isBlank(propId)) {
 165  0
                 throw new IllegalArgumentException("propId is blank");
 166  
             }
 167  0
                         this.propId = propId;
 168  0
                 }
 169  
 
 170  
                 public void setValue(String value) {
 171  
                         // TODO:  isBlank  or is null ???
 172  0
             if (StringUtils.isBlank(value)) {
 173  0
                 throw new IllegalArgumentException("value is blank");
 174  
             }
 175  0
                         this.value = value;
 176  0
                 }
 177  
                 
 178  
                 public void setParameterType(String parameterType) {
 179  0
                         if (StringUtils.isBlank(parameterType)){
 180  0
                         throw new IllegalArgumentException("parameter type is null or blank");
 181  
                         }
 182  0
                         if (!PropositionParameter.ParameterTypes.VALID_TYPE_CODES.contains(parameterType)){
 183  0
                 throw new IllegalArgumentException("parameter type is invalid");                                
 184  
                         }
 185  
                         // TODO: check against valid values
 186  0
                         this.parameterType = parameterType;
 187  0
                 }
 188  
                 
 189  
                 public void setSequenceNumber(Integer sequenceNumber) {
 190  0
                         if (sequenceNumber == null) {
 191  0
                 throw new IllegalArgumentException("parameter type is blank");                                
 192  
                         }
 193  0
                         this.sequenceNumber = sequenceNumber;
 194  0
                 }
 195  
 
 196  
                 @Override
 197  
                 public String getId() {
 198  0
                         return id;
 199  
                 }
 200  
 
 201  
                 @Override
 202  
                 public String getPropId() {
 203  0
                         return propId;
 204  
                 }
 205  
 
 206  
                 @Override
 207  
                 public String getValue() {
 208  0
                         return value;
 209  
                 }
 210  
 
 211  
                 @Override
 212  
                 public String getParameterType() {
 213  0
                         return parameterType;
 214  
                 }
 215  
 
 216  
                 @Override
 217  
                 public Integer getSequenceNumber() {
 218  0
                         return sequenceNumber;
 219  
                 }
 220  
 
 221  
                 /**
 222  
                  * Builds an instance of a PropositionParameter based on the current state of the builder.
 223  
                  * 
 224  
                  * @return the fully-constructed PropositionParameter
 225  
                  */
 226  
         @Override
 227  
         public PropositionParameter build() {
 228  0
             return new PropositionParameter(this);
 229  
         }
 230  
                 
 231  
     }
 232  
         @Override
 233  
         public int hashCode() {
 234  0
                 return HashCodeBuilder.reflectionHashCode(this, Constants.HASH_CODE_EQUALS_EXCLUDE);
 235  
         }
 236  
 
 237  
         @Override
 238  
         public boolean equals(Object obj) {
 239  0
                 return EqualsBuilder.reflectionEquals(obj, this, Constants.HASH_CODE_EQUALS_EXCLUDE);
 240  
         }
 241  
 
 242  
         @Override
 243  
         public String toString() {
 244  0
                 return ToStringBuilder.reflectionToString(this);
 245  
         }
 246  
         
 247  
         /**
 248  
          * Defines some internal constants used on this class.
 249  
          */
 250  0
         static class Constants {
 251  
                 final static String ROOT_ELEMENT_NAME = "PropositionParameter";
 252  
                 final static String TYPE_NAME = "PropositionParameterType";
 253  0
                 final static String[] HASH_CODE_EQUALS_EXCLUDE = { CoreConstants.CommonElements.FUTURE_ELEMENTS };
 254  
         }
 255  
         
 256  
         /**
 257  
          * A private class which exposes constants which define the XML element names to use
 258  
          * when this object is marshalled to XML.
 259  
          */
 260  0
         public static class Elements {
 261  
                 final static String ID = "id";
 262  
                 final static String PROP_ID = "propId";
 263  
                 final static String VALUE = "value";
 264  
                 final static String PARM_TYPE = "parameterType";
 265  
                 final static String SEQUENCE = "sequenceNumber";
 266  
         }
 267  
         
 268  
         /**
 269  
          * This enumeration identifies the valid PropositionParameter parameter type codes 
 270  
          */
 271  0
         public enum ParameterTypes {
 272  0
                 CONSTANT("C"),
 273  0
                 TERM("T"),
 274  0
                 FUNCTION("F");
 275  
                 
 276  
                 private final String code;
 277  0
                 private ParameterTypes(String code){
 278  0
                         this.code = code;
 279  0
                 }
 280  0
                 public static final Collection<PropositionParameter.ParameterTypes> VALID_TYPES =
 281  
                         Collections.unmodifiableCollection(Arrays.asList(CONSTANT, TERM, FUNCTION));
 282  
                         
 283  0
                 public static final Collection<String> VALID_TYPE_CODES =
 284  
                         Collections.unmodifiableCollection(Arrays.asList(CONSTANT.code(), TERM.code(), FUNCTION.code()));
 285  
                         
 286  
                 public String code(){
 287  0
                         return code;
 288  
                 }
 289  
                 @Override
 290  
                 public String toString() {
 291  0
                         return code;
 292  
                 }                
 293  
         }
 294  
 }