Coverage Report - org.kuali.rice.krms.api.repository.rule.RuleAttribute
 
Classes in this File Line Coverage Branch Coverage Complexity
RuleAttribute
0%
0/11
N/A
1.308
RuleAttribute$1
N/A
N/A
1.308
RuleAttribute$Builder
0%
0/17
0%
0/4
1.308
RuleAttribute$Constants
0%
0/2
N/A
1.308
RuleAttribute$Elements
0%
0/1
N/A
1.308
 
 1  
 package org.kuali.rice.krms.api.repository.rule;
 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.apache.commons.lang.builder.EqualsBuilder;
 15  
 import org.apache.commons.lang.builder.HashCodeBuilder;
 16  
 import org.apache.commons.lang.builder.ToStringBuilder;
 17  
 import org.kuali.rice.core.api.CoreConstants;
 18  
 import org.kuali.rice.core.api.mo.ModelBuilder;
 19  
 import org.kuali.rice.core.api.mo.ModelObjectComplete;
 20  
 import org.kuali.rice.krms.api.repository.BaseAttribute;
 21  
 import org.kuali.rice.krms.api.repository.BaseAttribute.Builder;
 22  
 import org.kuali.rice.krms.api.repository.BaseAttribute.Elements;
 23  
 import org.kuali.rice.krms.api.repository.type.KrmsAttributeDefinition;
 24  
 
 25  
 /**
 26  
  * Concrete model object implementation of RuleAttribute. 
 27  
  * immutable. 
 28  
  * Instances of RuleAttribute can be (un)marshalled to and from XML.
 29  
  *
 30  
  */
 31  
 @XmlRootElement(name = RuleAttribute.Constants.ROOT_ELEMENT_NAME)
 32  
 @XmlAccessorType(XmlAccessType.NONE)
 33  
 @XmlType(name = RuleAttribute.Constants.TYPE_NAME, propOrder = {
 34  
                 RuleAttribute.Elements.ID,
 35  
                 RuleAttribute.Elements.RULE_ID,
 36  
                 RuleAttribute.Elements.ATTR_DEFN_ID,
 37  
                 RuleAttribute.Elements.VALUE,
 38  
                 RuleAttribute.Elements.ATTR_DEFN,
 39  
                 CoreConstants.CommonElements.FUTURE_ELEMENTS
 40  
 })
 41  0
 public final class RuleAttribute extends BaseAttribute implements RuleAttributeContract, ModelObjectComplete{                
 42  
         private static final long serialVersionUID = 2988399046412505534L;
 43  
 
 44  
         @XmlElement(name = Elements.RULE_ID, required=true)
 45  
         private String ruleId;
 46  
         
 47  
          /** 
 48  
      * This constructor should never be called.  It is only present for use during JAXB unmarshalling. 
 49  
      */
 50  
     private RuleAttribute() {
 51  0
             super();
 52  0
             this.ruleId = null;
 53  0
     }
 54  
     
 55  
     /**
 56  
          * Constructs an RuleAttribute from the given builder.  
 57  
          * This constructor is private and should only ever be invoked from the builder.
 58  
          * 
 59  
          * @param builder the Builder from which to construct the RuleAttribute
 60  
          */
 61  
     private RuleAttribute(Builder builder) {
 62  0
             super(builder);
 63  0
         this.ruleId = builder.getRuleId();
 64  0
     }
 65  
     
 66  
         @Override
 67  
         public String getRuleId() {
 68  0
                 return this.ruleId;
 69  
         }
 70  
 
 71  
         /**
 72  
      * This builder is used to construct instances of RuleAttribute.  
 73  
      */
 74  0
     public static class Builder extends BaseAttribute.Builder implements RuleAttributeContract, ModelBuilder, Serializable {                
 75  
                 private static final long serialVersionUID = -8619106871420999876L;
 76  
                 
 77  
         private String ruleId;
 78  
 
 79  
                 /**
 80  
                  * Private constructor for creating a builder with all of it's required attributes.
 81  
                  */
 82  
         private Builder(String id, String ruleId, String attributeDefinitionId, String value) {
 83  0
                 super(id, attributeDefinitionId, value);
 84  0
             setRuleId(ruleId);
 85  0
         }
 86  
 
 87  
         public Builder attributeDefinition(KrmsAttributeDefinition.Builder attributeDefinition){
 88  0
                 setAttributeDefinition(attributeDefinition);
 89  0
                 return this;
 90  
         }
 91  
         
 92  
         /**
 93  
          * Creates a builder from the given parameters.
 94  
          * 
 95  
          * @param id the RuleAtribute id
 96  
          * @param ruleId the Rule Id 
 97  
          * @param attributeDefinitionId The attributeDefinitionId
 98  
          * @param value 
 99  
          * @return an instance of the builder with the fields already populated
 100  
          * @throws IllegalArgumentException if the either the id, name or namespace is null or blank
 101  
          */
 102  
         public static Builder create(String id, String ruleId, String attributeDefinitionId, String value) {
 103  0
             return new Builder(id, ruleId, attributeDefinitionId, value);
 104  
         }
 105  
         
 106  
         public static Builder create(RuleAttributeContract contract){
 107  0
                 if (contract == null) {
 108  0
                 throw new IllegalArgumentException("contract is null");
 109  
             }
 110  0
                 Builder builder = new Builder(contract.getId(), 
 111  
                                 contract.getRuleId(),
 112  
                                 contract.getAttributeDefinitionId(),
 113  
                                 contract.getValue())
 114  
                                 .attributeDefinition(KrmsAttributeDefinition.Builder
 115  
                                                 .create(contract.getAttributeDefinition()));
 116  0
                 return builder;
 117  
         }
 118  
 
 119  
                 public void setRuleId(String ruleId) {
 120  0
             if (StringUtils.isBlank(ruleId)) {
 121  0
                 throw new IllegalArgumentException("ruleId is blank");
 122  
             }
 123  0
                         this.ruleId = ruleId;
 124  0
                 }
 125  
 
 126  
                 @Override
 127  
                 public String getRuleId() {
 128  0
                         return ruleId;
 129  
                 }
 130  
 
 131  
                 /**
 132  
                  * Builds an instance of a RuleAttribute based on the current state of the builder.
 133  
                  * 
 134  
                  * @return the fully-constructed RuleAttribute
 135  
                  */
 136  
         @Override
 137  
         public RuleAttribute build() {
 138  0
             return new RuleAttribute(this);
 139  
         }
 140  
                 
 141  
     }
 142  
         @Override
 143  
         public int hashCode() {
 144  0
                 return HashCodeBuilder.reflectionHashCode(this, Constants.HASH_CODE_EQUALS_EXCLUDE);
 145  
         }
 146  
 
 147  
         @Override
 148  
         public boolean equals(Object obj) {
 149  0
                 return EqualsBuilder.reflectionEquals(obj, this, Constants.HASH_CODE_EQUALS_EXCLUDE);
 150  
         }
 151  
 
 152  
         @Override
 153  
         public String toString() {
 154  0
                 return ToStringBuilder.reflectionToString(this);
 155  
         }
 156  
         
 157  
         /**
 158  
          * Defines some internal constants used on this class.
 159  
          */
 160  0
         static class Constants {
 161  
                 final static String ROOT_ELEMENT_NAME = "RuleAttribute";
 162  
                 final static String TYPE_NAME = "RuleAttributeType";
 163  0
                 final static String[] HASH_CODE_EQUALS_EXCLUDE = { CoreConstants.CommonElements.FUTURE_ELEMENTS };
 164  
         }
 165  
         
 166  
         /**
 167  
          * A private class which exposes constants which define the XML element names to use
 168  
          * when this object is marshalled to XML.
 169  
          */
 170  0
         public static class Elements extends BaseAttribute.Elements {
 171  
                 final static String RULE_ID = "ruleId";
 172  
         }
 173  
 }