Coverage Report - org.kuali.rice.krms.api.repository.agenda.AgendaDefinition
 
Classes in this File Line Coverage Branch Coverage Complexity
AgendaDefinition
71%
25/35
50%
1/2
1.485
AgendaDefinition$1
N/A
N/A
1.485
AgendaDefinition$Builder
80%
44/55
72%
13/18
1.485
AgendaDefinition$Constants
50%
1/2
N/A
1.485
AgendaDefinition$Elements
0%
0/1
N/A
1.485
 
 1  
 package org.kuali.rice.krms.api.repository.agenda;
 2  
 
 3  
 import java.io.Serializable;
 4  
 import java.util.Collection;
 5  
 import java.util.Collections;
 6  
 import java.util.HashMap;
 7  
 import java.util.Map;
 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 javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
 16  
 
 17  
 import org.apache.commons.lang.StringUtils;
 18  
 import org.apache.commons.lang.builder.EqualsBuilder;
 19  
 import org.apache.commons.lang.builder.HashCodeBuilder;
 20  
 import org.apache.commons.lang.builder.ToStringBuilder;
 21  
 import org.kuali.rice.core.api.CoreConstants;
 22  
 import org.kuali.rice.core.api.mo.ModelBuilder;
 23  
 import org.kuali.rice.core.api.mo.ModelObjectComplete;
 24  
 import org.kuali.rice.core.util.jaxb.MapStringStringAdapter;
 25  
 import org.kuali.rice.krms.api.repository.context.ContextDefinitionContract;
 26  
 import org.kuali.rice.krms.api.repository.context.ContextDefinition.Builder;
 27  
 
 28  
 /**
 29  
  * Concrete model object implementation of KRMS Repository Agenda 
 30  
  * immutable. 
 31  
  * Instances of Agenda can be (un)marshalled to and from XML.
 32  
  *
 33  
  * @see AgendaDefinitionContract
 34  
  */
 35  
 @XmlRootElement(name = AgendaDefinition.Constants.ROOT_ELEMENT_NAME)
 36  
 @XmlAccessorType(XmlAccessType.NONE)
 37  
 @XmlType(name = AgendaDefinition.Constants.TYPE_NAME, propOrder = {
 38  
                 AgendaDefinition.Elements.AGENDA_ID,
 39  
                 AgendaDefinition.Elements.NAME,
 40  
                 AgendaDefinition.Elements.NAMESPACE_CODE,
 41  
                 AgendaDefinition.Elements.TYPE_ID,
 42  
                 AgendaDefinition.Elements.CONTEXT_ID,
 43  
                 AgendaDefinition.Elements.FIRST_ITEM_ID,
 44  
                 AgendaDefinition.Elements.ATTRIBUTES,
 45  
         CoreConstants.CommonElements.VERSION_NUMBER,
 46  
                 CoreConstants.CommonElements.FUTURE_ELEMENTS
 47  
 })
 48  2
 public final class AgendaDefinition implements AgendaDefinitionContract, ModelObjectComplete{
 49  
         private static final long serialVersionUID = 2783959459503209577L;
 50  
 
 51  
         @XmlElement(name = Elements.AGENDA_ID, required = false)
 52  
         private final String id;
 53  
         
 54  
         @XmlElement(name = Elements.NAME, required = true)
 55  
         private final String name;
 56  
         
 57  
         @XmlElement(name = Elements.NAMESPACE_CODE, required = true)
 58  
         private final String namespaceCode;
 59  
         
 60  
         @XmlElement(name = Elements.TYPE_ID, required = false)
 61  
         private final String typeId;
 62  
         
 63  
         @XmlElement(name = Elements.CONTEXT_ID, required = true)
 64  
         private final String contextId;
 65  
         
 66  
         @XmlElement(name = Elements.FIRST_ITEM_ID, required = false)
 67  
         private final String firstItemId;
 68  
         
 69  
         @XmlElement(name = Elements.ATTRIBUTES, required = false)
 70  
         @XmlJavaTypeAdapter(value = MapStringStringAdapter.class)
 71  
         private final Map<String, String> attributes;
 72  
         
 73  
     @XmlElement(name = CoreConstants.CommonElements.VERSION_NUMBER, required = false)
 74  
     private final Long versionNumber;
 75  
 
 76  5
     @SuppressWarnings("unused")
 77  
     @XmlAnyElement
 78  
     private final Collection<org.w3c.dom.Element> _futureElements = null;
 79  
         
 80  
         /** 
 81  
      * This constructor should never be called.  
 82  
      * It is only present for use during JAXB unmarshalling. 
 83  
      */
 84  3
     private AgendaDefinition() {
 85  3
             this.id = null;
 86  3
             this.name = null;
 87  3
             this.namespaceCode = null;
 88  3
             this.typeId = null;
 89  3
             this.contextId = null;
 90  3
             this.firstItemId = null;
 91  3
             this.attributes = null;
 92  3
         this.versionNumber = null;
 93  3
     }
 94  
     
 95  
     /**
 96  
          * Constructs a KRMS Repository Agenda object from the given builder.  
 97  
          * This constructor is private and should only ever be invoked from the builder.
 98  
          * 
 99  
          * @param builder the Builder from which to construct the Agenda
 100  
          */
 101  2
     private AgendaDefinition(Builder builder) {
 102  2
         this.id = builder.getId();
 103  2
         this.name = builder.getName();
 104  2
         this.namespaceCode = builder.getNamespaceCode();
 105  2
         this.typeId = builder.getTypeId();
 106  2
         this.contextId = builder.getContextId();
 107  2
         this.firstItemId = builder.getFirstItemId();
 108  2
         if (builder.getAttributes() != null){
 109  2
                 this.attributes = Collections.unmodifiableMap(new HashMap<String, String>(builder.getAttributes()));
 110  
         } else {
 111  0
                 this.attributes = null;
 112  
         }
 113  2
         this.versionNumber = builder.getVersionNumber();
 114  2
     }
 115  
     
 116  
         @Override
 117  
         public String getId() {
 118  1
                 return this.id;
 119  
         }
 120  
 
 121  
         @Override
 122  
         public String getName() {
 123  0
                 return this.name;
 124  
         }
 125  
 
 126  
         @Override
 127  
         public String getNamespaceCode() {
 128  0
                 return this.namespaceCode;
 129  
         }
 130  
 
 131  
         @Override
 132  
         public String getTypeId() {
 133  0
                 return this.typeId;
 134  
         }
 135  
 
 136  
         @Override
 137  
         public String getContextId(){
 138  0
                 return this.contextId;
 139  
         }
 140  
 
 141  
         @Override
 142  
         public String getFirstItemId(){
 143  0
                 return this.firstItemId;
 144  
         }
 145  
         
 146  
         @Override
 147  
         public Map<String, String> getAttributes() {
 148  0
                 return this.attributes; 
 149  
         }
 150  
 
 151  
     @Override
 152  
     public Long getVersionNumber() {
 153  0
         return versionNumber;
 154  
     }
 155  
     
 156  
          /**
 157  
      * This builder is used to construct instances of KRMS Repository Agenda.  It enforces the constraints of the {@link AgendaDefinitionContract}.
 158  
      */
 159  2
     public static class Builder implements AgendaDefinitionContract, ModelBuilder, Serializable {
 160  
                 
 161  
         private static final long serialVersionUID = -8862851720709537839L;
 162  
         
 163  
                 private String id;
 164  
         private String name;
 165  
         private String namespaceCode;
 166  
         private String typeId;
 167  
         private String contextId;
 168  
         private String firstItemId;
 169  
         private Map<String, String> attributes;
 170  
         private Long versionNumber;
 171  
 
 172  
                 /**
 173  
                  * Private constructor for creating a builder with all of it's required attributes.
 174  
                  */
 175  21
         private Builder(String id, String name, String namespaceCode, String typeId, String contextId) {
 176  21
                 setId(id);
 177  19
             setName(name);
 178  15
             setNamespaceCode(namespaceCode);
 179  12
             setTypeId(typeId);
 180  9
             setContextId(contextId);
 181  6
             setAttributes(new HashMap<String, String>());
 182  6
         }
 183  
         
 184  
         public static Builder create(String id, String name, String namespaceCode, String typeId, String contextId){
 185  21
                 return new Builder(id, name, namespaceCode, typeId, contextId);
 186  
         }
 187  
         /**
 188  
          * Creates a builder by populating it with data from the given {@link AgendaDefinitionContract}.
 189  
          * 
 190  
          * @param contract the contract from which to populate this builder
 191  
          * @return an instance of the builder populated with data from the contract
 192  
          */
 193  
         public static Builder create(AgendaDefinitionContract contract) {
 194  0
                 if (contract == null) {
 195  0
                 throw new IllegalArgumentException("contract is null");
 196  
             }
 197  0
             Builder builder =  new Builder(contract.getId(), contract.getName(),
 198  
                             contract.getNamespaceCode(), contract.getTypeId(), contract.getContextId());
 199  0
             builder.setFirstItemId( contract.getFirstItemId() );
 200  0
             if (contract.getAttributes() != null) {
 201  0
                 builder.setAttributes(new HashMap<String, String>(contract.getAttributes()));
 202  
             }
 203  0
             builder.setVersionNumber(contract.getVersionNumber());
 204  0
             return builder;
 205  
         }
 206  
 
 207  
                 /**
 208  
                  * Sets the value of the id on this builder to the given value.
 209  
                  * 
 210  
                  * @param id the id value to set, must not be null or blank
 211  
                  * @throws IllegalArgumentException if the id is null or blank
 212  
                  */
 213  
 
 214  
         public void setId(String agendaId) {
 215  21
             if (agendaId != null && StringUtils.isBlank(agendaId)) {
 216  2
                 throw new IllegalArgumentException("agenda ID must be null or non-blank");
 217  
             }
 218  19
                         this.id = agendaId;
 219  19
                 }
 220  
      
 221  
         public void setName(String name) {
 222  19
             if (StringUtils.isBlank(name)) {
 223  4
                 throw new IllegalArgumentException("name is blank");
 224  
             }
 225  15
                         this.name = name;
 226  15
                 }
 227  
      
 228  
         public void setNamespaceCode(String namespaceCode) {
 229  15
             if (StringUtils.isBlank(namespaceCode)) {
 230  3
                 throw new IllegalArgumentException("namespace is blank");
 231  
             }
 232  12
                         this.namespaceCode = namespaceCode;
 233  12
                 }
 234  
      
 235  
                 public void setTypeId(String typeId) {
 236  12
                         if (StringUtils.isBlank(typeId)) {
 237  3
                         throw new IllegalArgumentException("KRMS type id is blank");
 238  
                         }
 239  9
                         this.typeId = typeId;
 240  9
                 }
 241  
                 
 242  
                 public void setContextId(String contextId) {
 243  9
                         if (StringUtils.isBlank(contextId)) {
 244  3
                 throw new IllegalArgumentException("context id is blank");
 245  
                 }
 246  6
                         this.contextId = contextId;
 247  6
                 }
 248  
                 
 249  
                 
 250  
                 public void setFirstItemId(String firstItemId) {
 251  4
                         this.firstItemId = firstItemId;
 252  4
                 }
 253  
                 
 254  
                 public void setAttributes(Map<String, String> attributes){
 255  9
                         if (attributes == null){
 256  0
                                 this.attributes = Collections.emptyMap();
 257  
                         }
 258  9
                         this.attributes = Collections.unmodifiableMap(attributes);
 259  9
                 }
 260  
                 
 261  
                 /**
 262  
          * Sets the version number for the style that will be returned by this
 263  
          * builder.
 264  
          * 
 265  
          * <p>In general, this value should not be manually set on the builder,
 266  
          * but rather copied from an existing {@link ContextDefinitionContract} when
 267  
          * invoking {@link Builder#create(ContextDefinitionContract)}.
 268  
          * 
 269  
          * @param versionNumber the version number to set
 270  
          */
 271  
         public void setVersionNumber(Long versionNumber){
 272  0
             this.versionNumber = versionNumber;
 273  0
         }
 274  
         
 275  
                 @Override
 276  
                 public String getId() {
 277  2
                         return id;
 278  
                 }
 279  
 
 280  
                 @Override
 281  
                 public String getName() {
 282  2
                         return name;
 283  
                 }
 284  
 
 285  
                 @Override
 286  
                 public String getNamespaceCode() {
 287  2
                         return namespaceCode;
 288  
                 }
 289  
 
 290  
                 @Override
 291  
                 public String getTypeId() {
 292  2
                         return typeId;
 293  
                 }
 294  
 
 295  
                 @Override
 296  
                 public String getContextId() {
 297  2
                         return contextId;
 298  
                 }
 299  
 
 300  
                 @Override
 301  
                 public String getFirstItemId() {
 302  2
                         return firstItemId;
 303  
                 }
 304  
 
 305  
                 @Override
 306  
                 public Map<String, String> getAttributes() {
 307  4
                         return attributes;
 308  
                 }
 309  
 
 310  
         @Override
 311  
         public Long getVersionNumber() {
 312  2
             return versionNumber;
 313  
         }
 314  
 
 315  
                 /**
 316  
                  * Builds an instance of a Agenda based on the current state of the builder.
 317  
                  * 
 318  
                  * @return the fully-constructed Agenda
 319  
                  */
 320  
         @Override
 321  
         public AgendaDefinition build() {
 322  2
             return new AgendaDefinition(this);
 323  
         }
 324  
                 
 325  
     }
 326  
         @Override
 327  
         public int hashCode() {
 328  0
                 return HashCodeBuilder.reflectionHashCode(this, Constants.HASH_CODE_EQUALS_EXCLUDE);
 329  
         }
 330  
 
 331  
         @Override
 332  
         public boolean equals(Object obj) {
 333  1
                 return EqualsBuilder.reflectionEquals(obj, this, Constants.HASH_CODE_EQUALS_EXCLUDE);
 334  
         }
 335  
 
 336  
         @Override
 337  
         public String toString() {
 338  0
                 return ToStringBuilder.reflectionToString(this);
 339  
         }
 340  
         
 341  
         /**
 342  
          * Defines some constants used on this class.
 343  
          */
 344  0
         public static class Constants {
 345  
                 final static String ROOT_ELEMENT_NAME = "agenda";
 346  
                 final static String TYPE_NAME = "AgendaType";
 347  1
                 final static String[] HASH_CODE_EQUALS_EXCLUDE = { "_furutreElements" };
 348  
         public final static String EVENT = "Event";   // key for event attribute
 349  
         }
 350  
         
 351  
         /**
 352  
          * A private class which exposes constants which define the XML element names to use
 353  
          * when this object is marshalled to XML.
 354  
          */
 355  0
         public static class Elements {
 356  
                 final static String AGENDA_ID = "id";
 357  
                 final static String NAME = "name";
 358  
                 final static String NAMESPACE_CODE = "namespaceCode";
 359  
                 final static String TYPE_ID = "typeId";
 360  
                 final static String CONTEXT_ID = "contextId";
 361  
                 final static String FIRST_ITEM_ID = "firstItemId";
 362  
                 final static String ATTRIBUTES = "attributes";
 363  
                 final static String ATTRIBUTE = "attribute";
 364  
         }
 365  
 
 366  
 }