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