Coverage Report - org.kuali.rice.krms.api.repository.category.CategoryDefinition
 
Classes in this File Line Coverage Branch Coverage Complexity
CategoryDefinition
100%
18/18
N/A
1.5
CategoryDefinition$1
N/A
N/A
1.5
CategoryDefinition$Builder
96%
30/31
90%
9/10
1.5
CategoryDefinition$Constants
0%
0/1
N/A
1.5
CategoryDefinition$Elements
0%
0/1
N/A
1.5
 
 1  
 package org.kuali.rice.krms.api.repository.category;
 2  
 
 3  
 import org.apache.commons.lang.StringUtils;
 4  
 import org.kuali.rice.core.api.CoreConstants;
 5  
 import org.kuali.rice.core.api.mo.AbstractDataTransferObject;
 6  
 import org.kuali.rice.core.api.mo.ModelBuilder;
 7  
 import org.w3c.dom.Element;
 8  
 
 9  
 import javax.xml.bind.annotation.XmlAccessType;
 10  
 import javax.xml.bind.annotation.XmlAccessorType;
 11  
 import javax.xml.bind.annotation.XmlAnyElement;
 12  
 import javax.xml.bind.annotation.XmlElement;
 13  
 import javax.xml.bind.annotation.XmlRootElement;
 14  
 import javax.xml.bind.annotation.XmlType;
 15  
 import java.io.Serializable;
 16  
 import java.util.Collection;
 17  
 
 18  
 @XmlRootElement(name = CategoryDefinition.Constants.ROOT_ELEMENT_NAME)
 19  
 @XmlAccessorType(XmlAccessType.NONE)
 20  
 @XmlType(name = CategoryDefinition.Constants.TYPE_NAME, propOrder = {
 21  
                 CategoryDefinition.Elements.ID,
 22  
                 CategoryDefinition.Elements.NAME,
 23  
                 CategoryDefinition.Elements.NAMESPACE,
 24  
         CoreConstants.CommonElements.VERSION_NUMBER,
 25  
                 CoreConstants.CommonElements.FUTURE_ELEMENTS
 26  
 })
 27  10
 public class CategoryDefinition extends AbstractDataTransferObject implements CategoryDefinitionContract {
 28  
 
 29  
     private static final long serialVersionUID = -4748818967880857017L;
 30  
 
 31  
     @XmlElement(name = Elements.ID, required=true)
 32  
     private String id;
 33  
     @XmlElement(name = Elements.NAME, required=true)
 34  
     private String name;
 35  
     @XmlElement(name = Elements.NAMESPACE, required=true)
 36  
     private String namespace;
 37  
     @XmlElement(name = CoreConstants.CommonElements.VERSION_NUMBER, required = false)
 38  
     private final Long versionNumber;
 39  
 
 40  16
     @SuppressWarnings("unused")
 41  
     @XmlAnyElement
 42  
     private final Collection<Element> _futureElements = null;
 43  
 
 44  
     /**
 45  
     * This constructor should never be called.  It is only present for use during JAXB unmarshalling.
 46  
     */
 47  6
    private CategoryDefinition() {
 48  6
        this.id = null;
 49  6
        this.name = null;
 50  6
        this.namespace = null;
 51  6
        this.versionNumber = null;
 52  6
    }
 53  
 
 54  
     /**
 55  
          * Constructs a CategoryDefinition from the given builder.  This constructor is private and should only
 56  
          * ever be invoked from the builder.
 57  
          *
 58  
          * @param builder the Builder from which to construct the CategoryDefinition
 59  
          */
 60  10
     private CategoryDefinition(Builder builder) {
 61  10
         this.id = builder.getId();
 62  10
         this.name = builder.getName();
 63  10
         this.namespace = builder.getNamespace();
 64  10
         this.versionNumber = builder.getVersionNumber();
 65  10
     }
 66  
 
 67  
         public String getId() {
 68  4
                 return this.id;
 69  
         }
 70  
 
 71  
         public String getName() {
 72  4
                 return this.name;
 73  
         }
 74  
 
 75  
         public String getNamespace() {
 76  4
                 return this.namespace;
 77  
         }
 78  
 
 79  
     @Override
 80  
     public Long getVersionNumber() {
 81  2
         return versionNumber;
 82  
     }
 83  
 
 84  
     /**
 85  
      * This builder is used to construct instances of CategoryDefinition.  It enforces the constraints of the {@link org.kuali.rice.krms.api.repository.category.CategoryDefinitionContract}.
 86  
      */
 87  4
     public static class Builder implements CategoryDefinitionContract, ModelBuilder, Serializable {
 88  
 
 89  
         private static final long serialVersionUID = -5775478956373560840L;
 90  
 
 91  
         private String id;
 92  
         private String name;
 93  
         private String namespace;
 94  
         private Long versionNumber;
 95  
 
 96  
         /**
 97  
          * Private constructor for creating a builder with all of it's required attributes.
 98  
          */
 99  20
         private Builder(String id, String name, String namespace) {
 100  20
             setId(id);
 101  19
             setName(name);
 102  17
             setNamespace(namespace);
 103  16
         }
 104  
 
 105  
         /**
 106  
          * Creates a builder from the given parameters.
 107  
          *
 108  
          * @param id the CategoryDefinition id
 109  
          * @param name the CategoryDefinition name
 110  
          * @param namespace the CategoryDefinition namespace
 111  
          * @return an instance of the builder with the fields already populated
 112  
          * @throws IllegalArgumentException if the either the id, name or namespace is null or blank
 113  
          */
 114  
         public static Builder create(String id, String name, String namespace) {
 115  6
             return new Builder(id, name, namespace);
 116  
         }
 117  
 
 118  
         /**
 119  
          * Creates a builder by populating it with data from the given {@link CategoryDefinition}.
 120  
          *
 121  
          * @param category the category from which to populate this builder
 122  
          * @return an instance of the builder populated with data from the contract
 123  
          */
 124  
         public static Builder create(CategoryDefinitionContract category) {
 125  14
             if (category == null) {
 126  0
                 throw new IllegalArgumentException("contract is null");
 127  
             }
 128  14
             Builder builder =  new Builder(category.getId(), category.getName(), category.getNamespace());
 129  14
             builder.setVersionNumber(category.getVersionNumber());
 130  14
             return builder;
 131  
         }
 132  
 
 133  
         /**
 134  
          * Sets the value of the id on this builder to the given value.
 135  
          *
 136  
          * @param id the id value to set, must be null or non-blank
 137  
          * @throws IllegalArgumentException if the id is non-null and blank
 138  
          */
 139  
         public void setId(String id) {
 140  20
             if (null != id && StringUtils.isBlank(id)) {
 141  1
                 throw new IllegalArgumentException("id must be null or non-blank");
 142  
             }
 143  19
             this.id = id;
 144  19
         }
 145  
 
 146  
         /**
 147  
          * Sets the name for the category definition that will be returned by this builder.
 148  
          * The name must not be null or blank.
 149  
          *
 150  
          * @param name the name to set on this builder, must not be null or blank
 151  
          *
 152  
          * @throws IllegalArgumentException if the given name is null or blank
 153  
          */
 154  
         public void setName(String name) {
 155  19
             if (StringUtils.isBlank(name)) {
 156  2
                 throw new IllegalArgumentException("name is blank");
 157  
             }
 158  17
             this.name = name;
 159  17
         }
 160  
 
 161  
         /**
 162  
          * Sets the namespace code for the category definition that will be returned by this builder.
 163  
          * The namespace must not be null or blank.
 164  
          *
 165  
          * @param namespace the namespace code to set on this builder, must not be null or blank
 166  
          *
 167  
          * @throws IllegalArgumentException if the given namespace is null or blank
 168  
          */
 169  
         public void setNamespace(String namespace) {
 170  17
             if (StringUtils.isBlank(namespace)) {
 171  1
                 throw new IllegalArgumentException("namespace is blank");
 172  
             }
 173  16
             this.namespace = namespace;
 174  16
         }
 175  
 
 176  
         public void setVersionNumber(Long versionNumber){
 177  14
             this.versionNumber = versionNumber;
 178  14
         }
 179  
 
 180  
         @Override
 181  
         public String getId() {
 182  16
             return this.id;
 183  
         }
 184  
 
 185  
         @Override
 186  
         public String getName() {
 187  16
             return this.name;
 188  
         }
 189  
 
 190  
         @Override
 191  
         public String getNamespace() {
 192  16
             return this.namespace;
 193  
         }
 194  
 
 195  
         @Override
 196  
         public Long getVersionNumber() {
 197  16
             return this.versionNumber;
 198  
         }
 199  
 
 200  
         /**
 201  
          * Builds an instance of a CategoryDefinition based on the current state of the builder.
 202  
          *
 203  
          * @return the fully-constructed CampusType
 204  
          */
 205  
         @Override
 206  
         public CategoryDefinition build() {
 207  10
             return new CategoryDefinition(this);
 208  
         }
 209  
 
 210  
     }
 211  
 
 212  
     /**
 213  
      * Defines some internal constants used on this class.
 214  
      */
 215  0
     static class Constants {
 216  
         final static String ROOT_ELEMENT_NAME = "category";
 217  
         final static String TYPE_NAME = "CategoryType";
 218  
     }
 219  
 
 220  
     /**
 221  
      * A private class which exposes constants which define the XML element names to use
 222  
      * when this object is marshalled to XML.
 223  
      */
 224  0
     public static class Elements {
 225  
         final static String ID = "id";
 226  
         final static String NAME = "name";
 227  
         final static String NAMESPACE = "namespace";
 228  
     }
 229  
 }
 230  
 
 231