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