Coverage Report - org.kuali.rice.krms.api.repository.type.KrmsAttributeDefinition
 
Classes in this File Line Coverage Branch Coverage Complexity
KrmsAttributeDefinition
93%
28/30
N/A
1.281
KrmsAttributeDefinition$1
N/A
N/A
1.281
KrmsAttributeDefinition$Builder
75%
39/52
80%
8/10
1.281
KrmsAttributeDefinition$Constants
0%
0/1
N/A
1.281
KrmsAttributeDefinition$Elements
0%
0/1
N/A
1.281
 
 1  
 package org.kuali.rice.krms.api.repository.type;
 2  
 
 3  
 import java.io.Serializable;
 4  
 import java.util.Collection;
 5  
 
 6  
 import javax.xml.bind.annotation.XmlAccessType;
 7  
 import javax.xml.bind.annotation.XmlAccessorType;
 8  
 import javax.xml.bind.annotation.XmlAnyElement;
 9  
 import javax.xml.bind.annotation.XmlElement;
 10  
 import javax.xml.bind.annotation.XmlRootElement;
 11  
 import javax.xml.bind.annotation.XmlType;
 12  
 
 13  
 import org.apache.commons.lang.StringUtils;
 14  
 import org.kuali.rice.core.api.CoreConstants;
 15  
 import org.kuali.rice.core.api.mo.AbstractDataTransferObject;
 16  
 import org.kuali.rice.core.api.mo.ModelBuilder;
 17  
 
 18  
 /**
 19  
  * Concrete model object implementation of KRMS KrmsAttributeDefinition. 
 20  
  * immutable. 
 21  
  * Instances of KrmsAttributeDefinition can be (un)marshalled to and from XML.
 22  
  *
 23  
  * @see KrmsAttributeDefinitionContract
 24  
  */
 25  
 @XmlRootElement(name = KrmsAttributeDefinition.Constants.ROOT_ELEMENT_NAME)
 26  
 @XmlAccessorType(XmlAccessType.NONE)
 27  
 @XmlType(name = KrmsAttributeDefinition.Constants.TYPE_NAME, propOrder = {
 28  
                 KrmsAttributeDefinition.Elements.ID,
 29  
                 KrmsAttributeDefinition.Elements.NAME,
 30  
                 KrmsAttributeDefinition.Elements.NAMESPACE,
 31  
         KrmsAttributeDefinition.Elements.LABEL,
 32  
         KrmsAttributeDefinition.Elements.DESCRIPTION,
 33  
                 KrmsAttributeDefinition.Elements.ACTIVE,
 34  
                 KrmsAttributeDefinition.Elements.COMPONENT_NAME,
 35  
         CoreConstants.CommonElements.VERSION_NUMBER,
 36  
                 CoreConstants.CommonElements.FUTURE_ELEMENTS
 37  
 })
 38  8
 public final class KrmsAttributeDefinition extends AbstractDataTransferObject implements KrmsAttributeDefinitionContract {
 39  
         private static final long serialVersionUID = -6356968810972165031L;
 40  
         
 41  
         @XmlElement(name = Elements.ID, required=true)
 42  
         private final String id;
 43  
         @XmlElement(name = Elements.NAME, required=true)
 44  
         private final String name;
 45  
         @XmlElement(name = Elements.NAMESPACE, required=true)
 46  
         private final String namespace;
 47  
     @XmlElement(name = Elements.LABEL, required=false)
 48  
     private final String label;
 49  
     @XmlElement(name = Elements.DESCRIPTION, required=false)
 50  
     private final String description;
 51  
         @XmlElement(name = Elements.ACTIVE, required=false)
 52  
         private final boolean active;
 53  
         @XmlElement(name = Elements.COMPONENT_NAME, required=false)
 54  
         private final String componentName;
 55  
     @XmlElement(name = CoreConstants.CommonElements.VERSION_NUMBER, required = false)
 56  
     private final Long versionNumber;
 57  
         
 58  13
         @SuppressWarnings("unused")
 59  
     @XmlAnyElement
 60  
     private final Collection<org.w3c.dom.Element> _futureElements = null;
 61  
         
 62  
          /** 
 63  
      * This constructor should never be called.  It is only present for use during JAXB unmarshalling. 
 64  
      */
 65  5
     private KrmsAttributeDefinition() {
 66  5
             this.id = null;
 67  5
             this.name = null;
 68  5
             this.namespace = null;
 69  5
             this.label = null;
 70  5
         this.description = null;
 71  5
             this.active = false;
 72  5
             this.componentName = null;
 73  5
         this.versionNumber = null;
 74  5
     }
 75  
     
 76  
     /**
 77  
          * Constructs a KrmsAttributeDefinition from the given builder.  This constructor is private and should only
 78  
          * ever be invoked from the builder.
 79  
          * 
 80  
          * @param builder the Builder from which to construct the KrmsAttributeDefinition
 81  
          */
 82  8
     private KrmsAttributeDefinition(Builder builder) {
 83  8
         this.id = builder.getId();
 84  8
         this.name = builder.getName();
 85  8
         this.namespace = builder.getNamespace();
 86  8
         this.label = builder.getLabel();
 87  8
         this.description = builder.getDescription();
 88  8
         this.active = builder.isActive();
 89  8
         this.componentName = builder.getComponentName();
 90  8
         this.versionNumber = builder.getVersionNumber();
 91  8
     }
 92  
     
 93  
         public String getId() {
 94  1
                 return this.id;
 95  
         }
 96  
         
 97  
         public String getName() {
 98  6
                 return this.name;
 99  
         }
 100  
 
 101  
         public String getNamespace() {
 102  6
                 return this.namespace;
 103  
         }
 104  
 
 105  
         public String getLabel() {
 106  5
                 return this.label;
 107  
         }
 108  
 
 109  
     public String getDescription() {
 110  0
         return description;
 111  
     }
 112  
 
 113  
     public boolean isActive() {
 114  5
                 return this.active; 
 115  
         }
 116  
 
 117  
         public String getComponentName() {
 118  4
                 return this.componentName;
 119  
         }
 120  
         
 121  
     @Override
 122  
     public Long getVersionNumber() {
 123  0
         return versionNumber;
 124  
     }
 125  
         
 126  
         /**
 127  
      * This builder is used to construct instances of KrmsAttributeDefinition.  It enforces the constraints of the {@link KrmsAttributeDefinitionContract}.
 128  
      */
 129  6
     public static class Builder implements KrmsAttributeDefinitionContract, ModelBuilder, Serializable {                
 130  
                 private static final long serialVersionUID = -2110564370088779631L;
 131  
                 
 132  
                 private String id;
 133  
         private String name;
 134  
         private String namespace;
 135  
         private String label;
 136  
         private String description;
 137  
         private boolean active;
 138  
         private String componentName;
 139  
         private Long versionNumber;
 140  
 
 141  
                 /**
 142  
                  * Private constructor for creating a builder with all of it's required attributes.
 143  
                  */
 144  19
         private Builder(String id, String name, String namespace) {
 145  19
             setId(id);
 146  17
             setName(name);
 147  13
             setNamespace(namespace);
 148  10
                         setActive(true);
 149  10
         }
 150  
 
 151  
         public Builder label(String label){
 152  5
                 setLabel(label);
 153  5
                 return this;
 154  
         }
 155  
         public Builder componentName(String componentName){
 156  3
                 setComponentName(componentName);
 157  3
                 return this;
 158  
         }
 159  
         /**
 160  
          * Creates a builder from the given parameters.
 161  
          * 
 162  
          * @param id the KrmsAttributeDefinition id
 163  
          * @param name the KrmsAttributeDefinition name
 164  
          * @param namespace the KrmsAttributeDefinition namespace
 165  
          * @return an instance of the builder with the fields already populated
 166  
          * @throws IllegalArgumentException if the either the id, name or namespace is null or blank
 167  
          */
 168  
         public static Builder create(String id, String name, String namespace) {
 169  19
             return new Builder(id, name, namespace);
 170  
         }
 171  
 
 172  
         /**
 173  
          * Creates a builder by populating it with data from the given {@link KrmsAttributeDefinitionContract}.
 174  
          * 
 175  
          * @param contract the contract from which to populate this builder
 176  
          * @return an instance of the builder populated with data from the contract
 177  
          */
 178  
         public static Builder create(KrmsAttributeDefinitionContract contract) {
 179  0
                 if (contract == null) {
 180  0
                 throw new IllegalArgumentException("contract is null");
 181  
             }
 182  0
             Builder builder =  new Builder(contract.getId(), contract.getName(), contract.getNamespace());
 183  0
             builder.setActive(contract.isActive());
 184  0
             builder.setLabel(contract.getLabel());
 185  0
             builder.setDescription(contract.getDescription());
 186  0
             builder.setComponentName(contract.getComponentName());
 187  0
             builder.setVersionNumber(contract.getVersionNumber());
 188  0
             return builder;
 189  
         }
 190  
 
 191  
                 /**
 192  
                  * Sets the value of the id on this builder to the given value.
 193  
                  * 
 194  
                  * @param id the id value to set, must be null or non-blank
 195  
                  * @throws IllegalArgumentException if the id is non-null and blank
 196  
                  */
 197  
         public void setId(String id) {
 198  19
             if (null != id && StringUtils.isBlank(id)) {
 199  2
                 throw new IllegalArgumentException("id must be null or non-blank");
 200  
             }
 201  17
             this.id = id;
 202  17
         }
 203  
 
 204  
                 public void setName(String name) {
 205  17
             if (StringUtils.isBlank(name)) {
 206  4
                 throw new IllegalArgumentException("name is blank");
 207  
             }
 208  13
                         this.name = name;
 209  13
                 }
 210  
 
 211  
                 public void setNamespace(String namespace) {
 212  13
             if (StringUtils.isBlank(namespace)) {
 213  3
                 throw new IllegalArgumentException("namespace is blank");
 214  
             }
 215  10
                         this.namespace = namespace;
 216  10
                 }
 217  
                 
 218  
                 public void setLabel(String label) {
 219  6
                         this.label = label;
 220  6
                 }
 221  
 
 222  
         public void setDescription(String description) {
 223  0
             this.description = description;
 224  0
         }
 225  
 
 226  
 
 227  
                 public void setComponentName(String componentName) {
 228  4
                         this.componentName = componentName;
 229  4
                 }
 230  
                 
 231  
                 public void setActive(boolean active) {
 232  10
                         this.active = active;
 233  10
                 }
 234  
 
 235  
         public void setVersionNumber(Long versionNumber){
 236  0
             this.versionNumber = versionNumber;
 237  0
         }
 238  
         
 239  
                 @Override
 240  
                 public String getId() {
 241  8
                         return id;
 242  
                 }
 243  
 
 244  
                 @Override
 245  
                 public String getName() {
 246  8
                         return name;
 247  
                 }
 248  
 
 249  
                 @Override
 250  
                 public String getNamespace() {
 251  8
                         return namespace;
 252  
                 }
 253  
 
 254  
                 @Override
 255  
                 public String getComponentName() {
 256  8
                         return componentName;
 257  
                 }
 258  
 
 259  
                 @Override
 260  
                 public String getLabel() {
 261  8
                         return label;
 262  
                 }
 263  
 
 264  
         @Override
 265  
         public String getDescription() {
 266  8
             return description;
 267  
         }
 268  
 
 269  
         @Override
 270  
                 public boolean isActive() {
 271  8
                         return active;
 272  
                 }
 273  
 
 274  
         @Override
 275  
         public Long getVersionNumber() {
 276  8
             return versionNumber;
 277  
         }
 278  
 
 279  
                 /**
 280  
                  * Builds an instance of a CampusType based on the current state of the builder.
 281  
                  * 
 282  
                  * @return the fully-constructed CampusType
 283  
                  */
 284  
         @Override
 285  
         public KrmsAttributeDefinition build() {
 286  8
             return new KrmsAttributeDefinition(this);
 287  
         }
 288  
                 
 289  
     }
 290  
 
 291  
         /**
 292  
          * Defines some internal constants used on this class.
 293  
          */
 294  0
         static class Constants {
 295  
                 final static String ROOT_ELEMENT_NAME = "KrmsAttributeDefinition";
 296  
                 final static String TYPE_NAME = "KrmsAttributionDefinitionType";
 297  
         }
 298  
         
 299  
         /**
 300  
          * A private class which exposes constants which define the XML element names to use
 301  
          * when this object is marshalled to XML.
 302  
          */
 303  0
         public static class Elements {
 304  
                 final static String ID = "id";
 305  
                 final static String NAME = "name";
 306  
                 final static String NAMESPACE = "namespace";
 307  
                 final static String LABEL = "label";
 308  
         final static String DESCRIPTION = "description";
 309  
                 final static String COMPONENT_NAME = "componentName";
 310  
                 final static String ACTIVE = "active";
 311  
     }
 312  
 }