Coverage Report - org.kuali.rice.krms.api.repository.term.TermSpecificationDefinition
 
Classes in this File Line Coverage Branch Coverage Complexity
TermSpecificationDefinition
92%
23/25
50%
1/2
1.52
TermSpecificationDefinition$1
N/A
N/A
1.52
TermSpecificationDefinition$Builder
75%
28/37
58%
7/12
1.52
TermSpecificationDefinition$Builder$1
50%
1/2
N/A
1.52
TermSpecificationDefinition$Constants
50%
1/2
N/A
1.52
TermSpecificationDefinition$Elements
0%
0/1
N/A
1.52
 
 1  
 /*
 2  
  * Copyright 2011 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.rice.krms.api.repository.term;
 17  
 
 18  
 import java.io.Serializable;
 19  
 import java.util.Collection;
 20  
 
 21  
 import javax.xml.bind.annotation.XmlAccessType;
 22  
 import javax.xml.bind.annotation.XmlAccessorType;
 23  
 import javax.xml.bind.annotation.XmlAnyElement;
 24  
 import javax.xml.bind.annotation.XmlElement;
 25  
 import javax.xml.bind.annotation.XmlRootElement;
 26  
 import javax.xml.bind.annotation.XmlType;
 27  
 
 28  
 import org.apache.commons.lang.StringUtils;
 29  
 import org.apache.commons.lang.builder.EqualsBuilder;
 30  
 import org.apache.commons.lang.builder.HashCodeBuilder;
 31  
 import org.apache.commons.lang.builder.ToStringBuilder;
 32  
 import org.kuali.rice.core.api.CoreConstants;
 33  
 import org.kuali.rice.core.api.mo.ModelBuilder;
 34  
 import org.kuali.rice.core.api.mo.ModelObjectComplete;
 35  
 import org.kuali.rice.krms.api.repository.BuilderUtils;
 36  
 import org.kuali.rice.krms.api.repository.BuilderUtils.Transformer;
 37  
 import org.kuali.rice.krms.api.repository.rule.RuleDefinition.Builder;
 38  
 
 39  
 /**
 40  
  * Immutable DTO for TermSpecifications.  Construction must be done via the {@link Builder} inner class.
 41  
  * 
 42  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 43  
  *
 44  
  */
 45  
 @XmlRootElement(name = TermSpecificationDefinition.Constants.ROOT_ELEMENT_NAME)
 46  
 @XmlAccessorType(XmlAccessType.NONE)
 47  
 @XmlType(name = TermSpecificationDefinition.Constants.TYPE_NAME, propOrder = {
 48  
                 TermSpecificationDefinition.Elements.ID,
 49  
                 TermSpecificationDefinition.Elements.CONTEXT_ID,
 50  
                 TermSpecificationDefinition.Elements.NAME,
 51  
                 TermSpecificationDefinition.Elements.TYPE,
 52  
         CoreConstants.CommonElements.VERSION_NUMBER,
 53  
                 CoreConstants.CommonElements.FUTURE_ELEMENTS
 54  
 })
 55  5
 public final class TermSpecificationDefinition implements TermSpecificationDefinitionContract, ModelObjectComplete {
 56  
         
 57  
         private static final long serialVersionUID = 1L;
 58  
         
 59  
         @XmlElement(name = Elements.ID, required=false)
 60  
         private final String id;
 61  
         @XmlElement(name = Elements.CONTEXT_ID, required=true)
 62  
         private final String contextId;
 63  
         @XmlElement(name = Elements.NAME, required=true)
 64  
         private final String name;
 65  
         @XmlElement(name = Elements.TYPE, required=true)
 66  
         private final String type;
 67  
     @XmlElement(name = CoreConstants.CommonElements.VERSION_NUMBER, required = false)
 68  
     private final Long versionNumber;
 69  
         
 70  13
         @SuppressWarnings("unused")
 71  
     @XmlAnyElement
 72  
     private final Collection<org.w3c.dom.Element> _futureElements = null;
 73  
         
 74  
         /**
 75  
          * For JAXB use only, shouldn't ever be invoked directly
 76  
          */
 77  8
         private TermSpecificationDefinition() {
 78  8
                 id = null;
 79  8
                 contextId = null;
 80  8
                 name = null;
 81  8
                 type = null;
 82  8
         versionNumber = null;
 83  8
         }
 84  
         
 85  
         /**
 86  
          * Private constructor enforces use of Builder
 87  
          * 
 88  
          * @param b the builder to use
 89  
          */
 90  5
         private TermSpecificationDefinition(Builder b) {
 91  5
                 id = b.getId();
 92  5
                 contextId = b.getContextId();
 93  5
                 name = b.getName();
 94  5
                 type = b.getType();
 95  5
                 versionNumber = b.getVersionNumber();
 96  5
         }
 97  
         
 98  
         /**
 99  
          * Builder for the {@link TermSpecificationDefinition} immutable DTO.  Instantiate using static factory method(s).
 100  
          * 
 101  
          * @author Kuali Rice Team (rice.collab@kuali.org)
 102  
          */
 103  3
         public static class Builder implements TermSpecificationDefinitionContract, ModelBuilder, Serializable {
 104  
                 
 105  
                 private static final long serialVersionUID = 1L;
 106  
                 
 107  
                 private String termSpecificationId;
 108  
                 private String contextId;
 109  
                 private String name;
 110  
                 private String type;
 111  
         private Long versionNumber;
 112  
                 
 113  
                 private static final String NON_NULL_NON_EMPTY_ERROR =  " must be non-null and must contain non-whitespace chars"; 
 114  
 
 115  
                 /**
 116  
                  * {@link Transformer} to ease converting lists to Builder types
 117  
                  */
 118  
                 public static final Transformer<TermSpecificationDefinitionContract, TermSpecificationDefinition.Builder>
 119  1
                 toBuilder = new BuilderUtils.Transformer<TermSpecificationDefinitionContract, TermSpecificationDefinition.Builder>() {
 120  
                         public TermSpecificationDefinition.Builder transform(TermSpecificationDefinitionContract input) {
 121  0
                                 return TermSpecificationDefinition.Builder.create(input);
 122  
                         }
 123  
                 };
 124  
                 
 125  8
                 private Builder(String termSpecificationId, String contextId, String name, String type) {
 126  
                         // weird to use setters in constructor .. oh well.
 127  8
                         setId(termSpecificationId);
 128  8
                         setContextId(contextId);
 129  5
                         setName(name);
 130  5
                         setType(type);
 131  5
                 }
 132  
                 
 133  
                 /**
 134  
                  * static factory for a {@link Builder} from a complete set of field values for this object.
 135  
                  * 
 136  
                  * @param termSpecificationId the primary key field.  Must be null for service methods that 
 137  
                  * create {@link TermSpecificationDefinitionContract}s, and must be non-null & contain non-whitespace 
 138  
                  * chars otherwise.
 139  
                  * @param contextId key relates the {@link TermSpecificationDefinition} to a context.
 140  
                  * @param name the name for the {@link TermSpecificationDefinition}.  Must be non-null;.
 141  
                  * @param type the type for the {@link TermSpecificationDefinition}
 142  
                  * @return a {@link Builder} object
 143  
                  * @throws IllegalArgumentException if invalid parameters are supplied.
 144  
                  */
 145  
                 public static Builder create(String termSpecificationId, String contextId, String name, String type) {
 146  8
                         return new Builder(termSpecificationId, contextId, name, type);
 147  
                 }
 148  
                 
 149  
                 /**
 150  
                  * static factory for a {@link Builder} from a {@link TermSpecificationDefinitionContract}.
 151  
                  * 
 152  
                  * @param termSpecification may not be null;
 153  
                  * @throws IllegalArgumentException if termSpecification is null, or violates the field invariants of the {@link Builder}.
 154  
                  */
 155  
                 public static Builder create(TermSpecificationDefinitionContract termSpecification) {
 156  0
                         if (termSpecification == null) throw new IllegalArgumentException("termSpecification must be non-null");
 157  0
                         Builder builder =new Builder(termSpecification.getId(), 
 158  
                                         termSpecification.getContextId(), 
 159  
                                         termSpecification.getName(), 
 160  
                                         termSpecification.getType());
 161  0
                         builder.setVersionNumber(termSpecification.getVersionNumber());
 162  0
                         return builder;
 163  
                 }
 164  
                 
 165  
                 // Setters
 166  
                 
 167  
                 /**
 168  
                  * @param termSpecificationId the key for this {@link TermSpecificationDefinition}.  Must be null for
 169  
                  * service methods that create {@link TermSpecificationDefinitionContract}s, and otherwise must be non-null & contain 
 170  
                  * non-whitespace chars.
 171  
                  */
 172  
                 public void setId(String termSpecificationId) {
 173  8
                         if (termSpecificationId != null && StringUtils.isBlank(termSpecificationId))
 174  0
                                 throw new IllegalArgumentException("termSpecificationId must contain non-whitespace chars");
 175  8
                         this.termSpecificationId = termSpecificationId;
 176  8
                 }
 177  
                 
 178  
                 /**
 179  
                  * @param contextId the contextId to set.  Must be non-null and contain non-whitespace chars;
 180  
                  */
 181  
                 public void setContextId(String contextId) {
 182  8
                         if (StringUtils.isBlank(contextId)) {
 183  3
                                 throw new IllegalArgumentException("contextId" + NON_NULL_NON_EMPTY_ERROR);
 184  
                         }
 185  5
                         this.contextId = contextId;
 186  5
                 }
 187  
                 
 188  
                 /**
 189  
                  * @param name the name to set.  Must be non-null and contain non-whitespace chars;
 190  
                  */
 191  
                 public void setName(String name) {
 192  5
                         if (StringUtils.isBlank(name)) {
 193  0
                                 throw new IllegalArgumentException("name" + NON_NULL_NON_EMPTY_ERROR);
 194  
                         }
 195  5
                         this.name = name;
 196  5
                 }
 197  
                 /**
 198  
                  * @param type the type to set. Must be non-null and contain non-whitespace chars;
 199  
                  */
 200  
                 public void setType(String type) {
 201  5
                         if (StringUtils.isBlank(type)) {
 202  0
                                 throw new IllegalArgumentException("type" + NON_NULL_NON_EMPTY_ERROR);
 203  
                         }
 204  5
                         this.type = type;
 205  5
                 }
 206  
                 
 207  
                 /**
 208  
                  * @param versionNumber the versionNumber to set.  May be null.
 209  
                  */
 210  
         public void setVersionNumber(Long versionNumber){
 211  0
             this.versionNumber = versionNumber;
 212  0
         }
 213  
         
 214  
                 // Getters
 215  
                 
 216  
                 /**
 217  
                  * @return the termSpecificationId
 218  
                  */
 219  
                 @Override
 220  
                 public String getId() {
 221  5
                         return this.termSpecificationId;
 222  
                 }
 223  
 
 224  
                 /**
 225  
                  * @return the contextId
 226  
                  */
 227  
                 @Override
 228  
                 public String getContextId() {
 229  5
                         return this.contextId;
 230  
                 }
 231  
 
 232  
                 /**
 233  
                  * @return the name
 234  
                  */
 235  
                 @Override
 236  
                 public String getName() {
 237  5
                         return this.name;
 238  
                 }
 239  
 
 240  
                 /**
 241  
                  * @return the type
 242  
                  */
 243  
                 @Override
 244  
                 public String getType() {
 245  5
                         return this.type;
 246  
                 }
 247  
 
 248  
                 /**
 249  
                  * @return the version number
 250  
                  */
 251  
         @Override
 252  
         public Long getVersionNumber() {
 253  5
             return this.versionNumber;
 254  
         }
 255  
 
 256  
                 /**
 257  
                  * Constructs a {@link TermSpecificationDefinition}
 258  
                  * @see org.kuali.rice.core.api.mo.ModelBuilder#build()
 259  
                  */
 260  
                 @Override
 261  
                 public TermSpecificationDefinition build() {
 262  5
                         return new TermSpecificationDefinition(this);
 263  
                 }
 264  
         }
 265  
 
 266  
         /**
 267  
          * This value will be non-null for persisted  
 268  
          * @see org.kuali.rice.krms.api.repository.term.TermSpecificationDefinitionContract#getId()
 269  
          */
 270  
         @Override
 271  
         public String getId() {
 272  1
                 return id;
 273  
         }
 274  
 
 275  
         /**
 276  
          * This overridden method ...
 277  
          * 
 278  
          * @see org.kuali.rice.krms.api.repository.term.TermSpecificationDefinitionContract#getContextId()
 279  
          */
 280  
         @Override
 281  
         public String getContextId() {
 282  1
                 return contextId;
 283  
         }
 284  
 
 285  
         /**
 286  
          * @see org.kuali.rice.krms.api.repository.term.TermSpecificationDefinitionContract#getName()
 287  
          */
 288  
         @Override
 289  
         public String getName() {
 290  1
                 return name;
 291  
         }
 292  
 
 293  
         /**
 294  
          * @see org.kuali.rice.krms.api.repository.term.TermSpecificationDefinitionContract#getType()
 295  
          */
 296  
         @Override
 297  
         public String getType() {
 298  1
                 return type;
 299  
         }
 300  
         
 301  
         /**
 302  
          * @see org.kuali.rice.core.api.mo.common.Versioned#getVersionNumber()
 303  
          */
 304  
     @Override
 305  
     public Long getVersionNumber() {
 306  0
         return versionNumber;
 307  
     }
 308  
     
 309  
         /**
 310  
         * @see java.lang.Object#equals(java.lang.Object)
 311  
         */
 312  
         @Override
 313  
         public boolean equals(Object obj) {
 314  4
                 if (obj == null) return false;
 315  4
                 return EqualsBuilder.reflectionEquals(this, obj, Constants.HASH_CODE_EQUALS_EXCLUDE);
 316  
         }
 317  
         
 318  
         /**
 319  
         * @see java.lang.Object#hashCode()
 320  
         */
 321  
         @Override
 322  
         public int hashCode() {
 323  4
                 return HashCodeBuilder.reflectionHashCode(this, Constants.HASH_CODE_EQUALS_EXCLUDE);
 324  
         }
 325  
         
 326  
         /**
 327  
         * @see java.lang.Object#toString()
 328  
         */
 329  
         @Override
 330  
         public String toString() {
 331  0
                 return ToStringBuilder.reflectionToString(this);
 332  
         }
 333  
         
 334  
         /**
 335  
          * Defines some internal constants used on this class.
 336  
          */
 337  0
         static class Constants {
 338  
                 final static String ROOT_ELEMENT_NAME = "TermSpecification";
 339  
                 final static String TYPE_NAME = "TermSpecificationType";
 340  1
                 final static String[] HASH_CODE_EQUALS_EXCLUDE = { CoreConstants.CommonElements.FUTURE_ELEMENTS };
 341  
         }
 342  
         
 343  0
         static class Elements {
 344  
                 public static final String ID = "id";
 345  
                 public static final String CONTEXT_ID = "contextId";
 346  
                 public static final String NAME = "name";
 347  
                 public static final String TYPE = "type";
 348  
         }
 349  
         
 350  
 
 351  
 }