Coverage Report - org.kuali.rice.krms.api.repository.context.ContextDefinition
 
Classes in this File Line Coverage Branch Coverage Complexity
ContextDefinition
72%
27/37
50%
3/6
1.613
ContextDefinition$1
N/A
N/A
1.613
ContextDefinition$Builder
74%
43/58
59%
13/22
1.613
ContextDefinition$Constants
0%
0/1
N/A
1.613
ContextDefinition$Elements
0%
0/1
N/A
1.613
 
 1  
 package org.kuali.rice.krms.api.repository.context;
 2  
 
 3  
 import org.apache.commons.lang.StringUtils;
 4  
 import org.kuali.rice.core.api.CoreConstants;
 5  
 import org.kuali.rice.core.api.mo.AbstractDataTransferObject;
 6  
 import org.kuali.rice.core.api.mo.ModelBuilder;
 7  
 import org.kuali.rice.core.api.util.jaxb.MapStringStringAdapter;
 8  
 import org.kuali.rice.krms.api.repository.agenda.AgendaDefinition;
 9  
 import org.kuali.rice.krms.api.repository.agenda.AgendaDefinitionContract;
 10  
 
 11  
 import javax.xml.bind.annotation.XmlAccessType;
 12  
 import javax.xml.bind.annotation.XmlAccessorType;
 13  
 import javax.xml.bind.annotation.XmlAnyElement;
 14  
 import javax.xml.bind.annotation.XmlElement;
 15  
 import javax.xml.bind.annotation.XmlElementWrapper;
 16  
 import javax.xml.bind.annotation.XmlRootElement;
 17  
 import javax.xml.bind.annotation.XmlType;
 18  
 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
 19  
 import java.io.Serializable;
 20  
 import java.util.Collection;
 21  
 import java.util.Collections;
 22  
 import java.util.HashMap;
 23  
 import java.util.HashSet;
 24  
 import java.util.Map;
 25  
 import java.util.Set;
 26  
 
 27  
 /**
 28  
  * An immutable representation of a context definition.  A context definition
 29  
  * defines information about a context which can be loaded into the rules
 30  
  * engine for evaluation.
 31  
  * 
 32  
  * A context definition includes a list of agendas which are valid within the
 33  
  * context.  Typically, during rule engine execution, one or more of these
 34  
  * agendas is selected for execution based on a given set of selection criteria.
 35  
  * 
 36  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 37  
  *
 38  
  */
 39  
 @XmlRootElement(name = ContextDefinition.Constants.ROOT_ELEMENT_NAME)
 40  
 @XmlAccessorType(XmlAccessType.NONE)
 41  
 @XmlType(name = ContextDefinition.Constants.TYPE_NAME, propOrder = {
 42  
                 ContextDefinition.Elements.ID,
 43  
                 ContextDefinition.Elements.NAMESPACE,
 44  
                 ContextDefinition.Elements.NAME,
 45  
         ContextDefinition.Elements.TYPE_ID,
 46  
         ContextDefinition.Elements.DESCRIPTION,
 47  
                 ContextDefinition.Elements.AGENDAS,
 48  
                 ContextDefinition.Elements.ATTRIBUTES,
 49  
         CoreConstants.CommonElements.VERSION_NUMBER,
 50  
         CoreConstants.CommonElements.FUTURE_ELEMENTS
 51  
 })
 52  2
 public final class ContextDefinition extends AbstractDataTransferObject implements ContextDefinitionContract {
 53  
         
 54  
         private static final long serialVersionUID = -6639428234851623868L;
 55  
 
 56  
         @XmlElement(name = Elements.ID, required = false)
 57  
         private final String id;
 58  
         
 59  
         @XmlElement(name = Elements.NAME, required = true)
 60  
     private final String name;
 61  
         
 62  
         @XmlElement(name = Elements.NAMESPACE, required = true)
 63  
     private final String namespace;
 64  
         
 65  
         @XmlElement(name = Elements.TYPE_ID, required = false)
 66  
     private final String typeId;
 67  
         
 68  
     @XmlElement(name = Elements.DESCRIPTION, required = false)
 69  
     private final String description;
 70  
     
 71  
         @XmlElementWrapper(name = Elements.AGENDAS)
 72  
         @XmlElement(name = Elements.AGENDA, required = false)
 73  
         private final Set<AgendaDefinition> agendas;
 74  
             
 75  
         @XmlElement(name = Elements.ATTRIBUTES, required = false)
 76  
         @XmlJavaTypeAdapter(value = MapStringStringAdapter.class)
 77  
         private final Map<String, String> attributes;
 78  
         
 79  
         @XmlElement(name = CoreConstants.CommonElements.VERSION_NUMBER, required = false)
 80  
     private final Long versionNumber;
 81  
         
 82  4
     @SuppressWarnings("unused")
 83  
     @XmlAnyElement
 84  
     private final Collection<org.w3c.dom.Element> _futureElements = null;
 85  
 
 86  
     /**
 87  
      * Used only by JAXB.
 88  
      */
 89  2
     private ContextDefinition() {
 90  2
             this.id = null;
 91  2
             this.name = null;
 92  2
             this.namespace = null;
 93  2
             this.typeId = null;
 94  2
             this.description = null;
 95  2
             this.agendas = null;
 96  2
             this.versionNumber = null;
 97  2
             this.attributes = null;
 98  2
     }
 99  
     
 100  2
     private ContextDefinition(Builder builder) {
 101  2
             this.id = builder.getId();
 102  2
             this.name = builder.getName();
 103  2
             this.namespace = builder.getNamespace();
 104  
 
 105  2
             this.description = builder.getDescription();
 106  
 
 107  2
             this.typeId = builder.getTypeId();
 108  2
             this.agendas = constructAgendas(builder.getAgendas());
 109  2
             this.versionNumber = builder.getVersionNumber();
 110  2
         if (builder.getAttributes() != null){
 111  2
                 this.attributes = Collections.unmodifiableMap(new HashMap<String, String>(builder.getAttributes()));
 112  
         } else {
 113  0
                 this.attributes = null;
 114  
         }
 115  2
     }
 116  
     
 117  
     private static Set<AgendaDefinition> constructAgendas(Set<AgendaDefinition.Builder> agendaBuilders) {
 118  2
             Set<AgendaDefinition> agendas = new HashSet<AgendaDefinition>();
 119  2
             if (agendaBuilders != null) {
 120  2
                     for (AgendaDefinition.Builder agendaBuilder : agendaBuilders) {
 121  0
                             agendas.add(agendaBuilder.build());
 122  
                     }
 123  
             }
 124  2
             return agendas;
 125  
     }
 126  
     
 127  
     @Override
 128  
         public String getId() {
 129  0
                 return id;
 130  
         }
 131  
 
 132  
         @Override
 133  
         public String getNamespace() {
 134  0
                 return namespace;
 135  
         }
 136  
 
 137  
         @Override
 138  
         public String getName() {
 139  0
                 return name;
 140  
         }
 141  
 
 142  
         @Override
 143  
         public String getTypeId() {
 144  0
                 return typeId;
 145  
         }
 146  
 
 147  
     @Override
 148  
     public String getDescription() {
 149  0
         return description;
 150  
     }
 151  
         
 152  
         @Override
 153  
         public Set<AgendaDefinition> getAgendas() {
 154  0
                 return Collections.unmodifiableSet(this.agendas);
 155  
         }
 156  
         
 157  
         @Override
 158  
         public Map<String, String> getAttributes() {
 159  0
                 return this.attributes; 
 160  
         }
 161  
 
 162  
         @Override
 163  
         public Long getVersionNumber() {
 164  0
                 return versionNumber;
 165  
         }
 166  
         
 167  
         /**
 168  
          * A builder which can be used to construct ContextDefinition instances.  Enforces the
 169  
          * constraints of the {@link ContextDefinitionContract}.  This class is the only means
 170  
          * by which a {@link ContextDefinition} object can be constructed.
 171  
          * 
 172  
          * @author Kuali Rice Team (rice.collab@kuali.org)
 173  
          *
 174  
          */
 175  2
         public static final class Builder implements ContextDefinitionContract, ModelBuilder, Serializable  {
 176  
             
 177  
             private static final long serialVersionUID = -219369603932108436L;
 178  
             
 179  
                 private String id;
 180  
                 private String namespace;
 181  
         private String name;
 182  
         private String typeId;
 183  
         private String description;
 184  
         private Set<AgendaDefinition.Builder> agendas;
 185  
         private Map<String, String> attributes;
 186  
         private Long versionNumber;
 187  
         
 188  15
         private Builder(String namespace, String name) {
 189  15
                 setNamespace(namespace);
 190  11
                 setName(name);
 191  8
                 setAgendas(new HashSet<AgendaDefinition.Builder>());
 192  8
             setAttributes(new HashMap<String, String>());
 193  8
         }
 194  
         
 195  
         /**
 196  
          * Creates a context definition builder with the given required values
 197  
          * 
 198  
          * @param namespace the namespace code of the context definition to create, must not be null or blank
 199  
          * @param name the name of the context definition to create, must not be null or blank
 200  
          * 
 201  
          * @return a builder with the required values already initialized
 202  
          * 
 203  
          * @throws IllegalArgumentException if the given namespace is null or blank
 204  
          * @throws IllegalArgumentException if the given name is null or blank
 205  
          */
 206  
         public static Builder create(String namespace, String name) {
 207  15
                 return new Builder(namespace, name);
 208  
         }
 209  
         
 210  
         /**
 211  
          * Creates a populates a builder with the data on the given ContextDefinitionContract.
 212  
          * This is similar in nature to a "copy constructor" for Style.
 213  
          * 
 214  
          * @param contract an object implementing the ContextDefinitionContract from which
 215  
          * to copy property values
 216  
          *  
 217  
          * @return a builder with the values from the contract already initialized
 218  
          * 
 219  
          * @throws IllegalArgumentException if the given contract is null
 220  
          */
 221  
         public static Builder create(ContextDefinitionContract contract) {
 222  0
                 if (contract == null) {
 223  0
                         throw new IllegalArgumentException("contract was null");
 224  
                 }
 225  0
                 Builder builder = create(contract.getNamespace(), contract.getName());
 226  0
                 builder.setId(contract.getId());
 227  0
                 builder.setTypeId(contract.getTypeId());
 228  0
             builder.setDescription(contract.getDescription());
 229  0
                 builder.setVersionNumber(contract.getVersionNumber());
 230  0
                 builder.setAgendas(contract.getAgendas());
 231  0
             if (contract.getAttributes() != null) {
 232  0
                 builder.setAttributes(new HashMap<String, String>(contract.getAttributes()));
 233  
             }
 234  0
                 return builder;
 235  
         }
 236  
         
 237  
         @Override
 238  
         public ContextDefinition build() {
 239  2
                 return new ContextDefinition(this);
 240  
         }
 241  
         
 242  
                 @Override
 243  
                 public Long getVersionNumber() {
 244  2
                         return this.versionNumber;
 245  
                 }
 246  
 
 247  
                 @Override
 248  
                 public String getId() {
 249  2
                         return this.id;
 250  
                 }
 251  
 
 252  
                 @Override
 253  
                 public String getNamespace() {
 254  2
                         return this.namespace;
 255  
                 }
 256  
 
 257  
                 @Override
 258  
                 public String getName() {
 259  2
                         return this.name;
 260  
                 }
 261  
 
 262  
                 @Override
 263  
                 public String getTypeId() {
 264  2
                         return this.typeId;
 265  
                 }
 266  
 
 267  
         @Override
 268  
         public String getDescription() {
 269  2
             return description;
 270  
         }
 271  
 
 272  
         @Override
 273  
                 public Set<AgendaDefinition.Builder> getAgendas() {
 274  2
                         return agendas;
 275  
                 }
 276  
 
 277  
                 @Override
 278  
                 public Map<String, String> getAttributes() {
 279  4
                         return attributes;
 280  
                 }
 281  
 
 282  
                 /**
 283  
          * Sets the id for the context definition that will be created by this builder.
 284  
          * 
 285  
          * @param id the id to set
 286  
          */
 287  
                 public void setId(String id) {
 288  5
                         if (id != null){
 289  5
                                 if (StringUtils.isBlank(id)){
 290  2
                                         throw new IllegalArgumentException("context id is blank");                                        
 291  
                                 }
 292  
                         }
 293  3
                         this.id = id;
 294  3
                 }
 295  
 
 296  
                 /**
 297  
                  * Sets the namespace code for the context definition that will be created
 298  
                  * by this builder.  The namespace code must not be blank or null.
 299  
                  * 
 300  
                  * @param namespace the namespace to set on this builder, must not be
 301  
                  * null or blank
 302  
                  * 
 303  
                  * @throws IllegalArgumentException if the given namespace code is null or blank
 304  
                  */
 305  
                 public void setNamespace(String namespace) {
 306  15
                         if (StringUtils.isBlank(namespace)) {
 307  4
                                 throw new IllegalArgumentException("namespace is blank");
 308  
                         }
 309  11
                         this.namespace = namespace;
 310  11
                 }
 311  
 
 312  
                 /**
 313  
                  * Sets the name for the context definition that will be created
 314  
                  * by this builder.  The name must not be blank or null.
 315  
                  * 
 316  
                  * @param name the name to set on this builder, must not be
 317  
                  * null or blank
 318  
                  * 
 319  
                  * @throws IllegalArgumentException if the given name is null or blank
 320  
                  */
 321  
                 public void setName(String name) {
 322  11
                         if (StringUtils.isBlank(name)) {
 323  3
                                 throw new IllegalArgumentException("name is blank");
 324  
                         }
 325  8
                         this.name = name;
 326  8
                 }
 327  
 
 328  
                 /**
 329  
          * Sets the typeId for the context definition that will be created by this builder.
 330  
          * 
 331  
          * @param typeId the typeId to set
 332  
          */
 333  
                 public void setTypeId(String typeId) {
 334  5
                         if (typeId != null){
 335  5
                                 if (StringUtils.isBlank(typeId)){
 336  2
                                         throw new IllegalArgumentException("type id is blank");                                        
 337  
                                 }
 338  
                         }
 339  3
                         this.typeId = typeId;
 340  3
                 }
 341  
                 
 342  
         /**
 343  
          * Sets the typeId for the context definition that will be created by this builder.
 344  
          *
 345  
          * @param typeId the typeId to set
 346  
          */
 347  
         public void setDescription(String description) {
 348  1
             this.description = description;
 349  1
         }
 350  
 
 351  
                 public void setAgendas(Set<? extends AgendaDefinitionContract> agendaContracts) {
 352  8
                         this.agendas = new HashSet<AgendaDefinition.Builder>();
 353  8
                         if (agendaContracts != null) for (AgendaDefinitionContract agendaContract : agendaContracts) {
 354  0
                                 this.agendas.add(AgendaDefinition.Builder.create(agendaContract));
 355  
                         }
 356  8
                 }
 357  
 
 358  
                 public void setAttributes(Map<String, String> attributes){
 359  8
                         if (attributes == null){
 360  0
                                 this.attributes = Collections.emptyMap();
 361  
                         }
 362  8
                         this.attributes = Collections.unmodifiableMap(attributes);
 363  8
                 }
 364  
                 
 365  
                 /**
 366  
          * Sets the version number for the style that will be returned by this
 367  
          * builder.
 368  
          * 
 369  
          * <p>In general, this value should not be manually set on the builder,
 370  
          * but rather copied from an existing {@link ContextDefinitionContract} when
 371  
          * invoking {@link Builder#create(ContextDefinitionContract)}.
 372  
          * 
 373  
          * @param versionNumber the version number to set
 374  
          */
 375  
                 public void setVersionNumber(Long versionNumber) {
 376  0
                         this.versionNumber = versionNumber;
 377  0
                 }
 378  
                 
 379  
     }
 380  
         
 381  
         /**
 382  
      * Defines some internal constants used on this class.
 383  
      */
 384  0
     public static class Constants {
 385  
         final static String ROOT_ELEMENT_NAME = "context";
 386  
         final static String TYPE_NAME = "ContextDefinitionType";
 387  
     }
 388  
 
 389  
     /**
 390  
      * A private class which exposes constants which define the XML element names to use
 391  
      * when this object is marshalled to XML.
 392  
      */
 393  0
     public static class Elements {
 394  
         final static String ID = "id";
 395  
         final static String NAMESPACE = "namespace";
 396  
         final static String NAME = "name";
 397  
         final static String TYPE_ID = "typeId";
 398  
         final static String DESCRIPTION = "description";
 399  
         final static String AGENDA = "agenda";
 400  
         final static String AGENDAS = "agendas";
 401  
                 final static String ATTRIBUTES = "attributes";
 402  
     }
 403  
                 
 404  
         
 405  
         
 406  
 }