Coverage Report - org.kuali.rice.kim.document.IdentityManagementTypeAttributeTransactionalDocument
 
Classes in this File Line Coverage Branch Coverage Complexity
IdentityManagementTypeAttributeTransactionalDocument
0%
0/36
0%
0/22
2
 
 1  
 /*
 2  
  * Copyright 2007-2009 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.rice.kim.document;
 17  
 
 18  
 import java.util.List;
 19  
 import java.util.Map;
 20  
 
 21  
 import org.apache.commons.lang.StringUtils;
 22  
 import org.kuali.rice.kim.bo.impl.KimAttributes;
 23  
 import org.kuali.rice.kim.bo.types.dto.AttributeDefinitionMap;
 24  
 import org.kuali.rice.kim.bo.types.dto.KimTypeInfo;
 25  
 import org.kuali.rice.kim.service.KIMServiceLocator;
 26  
 import org.kuali.rice.kim.service.support.KimTypeService;
 27  
 import org.kuali.rice.kim.util.KimCommonUtils;
 28  
 import org.kuali.rice.kim.util.KimConstants;
 29  
 import org.kuali.rice.kns.datadictionary.AttributeDefinition;
 30  
 import org.kuali.rice.kns.service.KNSServiceLocator;
 31  
 import org.kuali.rice.kns.service.SequenceAccessorService;
 32  
 
 33  
 /**
 34  
  * This is a description of what this class does - shyu don't forget to fill
 35  
  * this in.
 36  
  * 
 37  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 38  
  * 
 39  
  */
 40  0
 public class IdentityManagementTypeAttributeTransactionalDocument extends IdentityManagementKimDocument {
 41  
 
 42  
         protected static final long serialVersionUID = -9064436454008712125L;
 43  
         
 44  
         protected transient KimTypeService kimTypeService;
 45  
         protected KimTypeInfo kimType;
 46  
         protected List<? extends KimAttributes> attributes;
 47  
         
 48  
         protected transient AttributeDefinitionMap definitions;
 49  
         protected transient Map<String,Object> attributeEntry;
 50  
         
 51  
         /**
 52  
          * @return the attributes
 53  
          */
 54  
         public List<? extends KimAttributes> getAttributes() {
 55  0
                 return this.attributes;
 56  
         }
 57  
         /**
 58  
          * @param attributes the attributes to set
 59  
          */
 60  
         public void setAttributes(List<? extends KimAttributes> attributes) {
 61  0
                 this.attributes = attributes;
 62  0
         }
 63  
         /**
 64  
          * @return the kimType
 65  
          */
 66  
         public KimTypeInfo getKimType() {
 67  0
                 return this.kimType;
 68  
         }
 69  
         /**
 70  
          * @param kimType the kimType to set
 71  
          */
 72  
         public void setKimType(KimTypeInfo kimType) {
 73  0
                 this.kimType = kimType;
 74  0
         }
 75  
 
 76  
         public Map<String,Object> getAttributeEntry() {
 77  0
                 if(attributeEntry==null || attributeEntry.isEmpty())
 78  0
                         attributeEntry = KIMServiceLocator.getUiDocumentService().getAttributeEntries(getDefinitions());
 79  0
                 return attributeEntry;
 80  
         }
 81  
 
 82  
         public String getCommaDelimitedAttributesLabels(String commaDelimitedAttributesNamesList){
 83  0
                 String[] names = StringUtils.splitByWholeSeparator(commaDelimitedAttributesNamesList, KimConstants.KimUIConstants.COMMA_SEPARATOR);
 84  0
                 StringBuffer commaDelimitedAttributesLabels = new StringBuffer();
 85  0
                 for(String name: names){
 86  0
                         commaDelimitedAttributesLabels.append(getAttributeEntry().get(name.trim())+KimConstants.KimUIConstants.COMMA_SEPARATOR);
 87  
                 }
 88  0
         if(commaDelimitedAttributesLabels.toString().endsWith(KimConstants.KimUIConstants.COMMA_SEPARATOR))
 89  0
                 commaDelimitedAttributesLabels.delete(commaDelimitedAttributesLabels.length()-KimConstants.KimUIConstants.COMMA_SEPARATOR.length(), commaDelimitedAttributesLabels.length());
 90  0
         return commaDelimitedAttributesLabels.toString();
 91  
         }
 92  
         
 93  
         /**
 94  
          * Returns an {@link AttributeDefinitionMap}
 95  
          * 
 96  
          * @return
 97  
          */
 98  
         public AttributeDefinitionMap getDefinitions() {
 99  0
                 if (definitions == null || definitions.isEmpty()) {
 100  0
                 KimTypeService kimTypeService = getKimTypeService(getKimType());
 101  0
                 if(kimTypeService!=null)
 102  0
                         this.definitions = kimTypeService.getAttributeDefinitions(getKimType().getKimTypeId());
 103  
                 }
 104  0
                 return this.definitions;
 105  
         }
 106  
 
 107  
         public AttributeDefinitionMap getDefinitionsKeyedByAttributeName() {
 108  0
                 AttributeDefinitionMap definitionsKeyedBySortCode = getDefinitions();
 109  0
                 AttributeDefinitionMap returnValue = new AttributeDefinitionMap();
 110  0
                 if (definitionsKeyedBySortCode != null) {
 111  0
                         for (AttributeDefinition definition : definitionsKeyedBySortCode.values()) {
 112  0
                                 returnValue.put(definition.getName(), definition);
 113  
                         }
 114  
                 }
 115  0
                 return returnValue;
 116  
         }
 117  
         
 118  
         public void setDefinitions(AttributeDefinitionMap definitions) {
 119  0
                 this.definitions = definitions;
 120  0
         }
 121  
 
 122  
         protected KimTypeService getKimTypeService(KimTypeInfo kimType){
 123  0
                 if( kimTypeService==null){
 124  0
                     kimTypeService = KimCommonUtils.getKimTypeService(kimType);
 125  
                 }
 126  0
                 return kimTypeService;
 127  
         }
 128  
 
 129  
         protected SequenceAccessorService getSequenceAccessorService(){
 130  0
                 if(this.sequenceAccessorService==null){
 131  0
                     this.sequenceAccessorService = KNSServiceLocator.getSequenceAccessorService();
 132  
                 }
 133  0
                 return this.sequenceAccessorService;
 134  
         }
 135  
 
 136  
 }