Coverage Report - org.kuali.student.r2.core.class1.state.service.impl.StateServiceMockDataImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
StateServiceMockDataImpl
0%
0/25
N/A
1
 
 1  
 /*
 2  
  * Copyright 2012 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the
 5  
  * "License"); you may not use this file except in compliance with the
 6  
  * License. You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.osedu.org/licenses/ECL-2.0
 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
 13  
  * implied. See the License for the specific language governing
 14  
  * permissions and limitations under the License.
 15  
  */
 16  
 
 17  
 package org.kuali.student.r2.core.class1.state.service.impl;
 18  
 
 19  
 
 20  
 import org.kuali.student.r2.core.state.dto.LifecycleInfo;
 21  
 import org.kuali.student.r2.core.state.dto.StateInfo;
 22  
 
 23  
 import org.kuali.student.r2.common.dto.ContextInfo;
 24  
 import org.kuali.student.r2.common.dto.RichTextInfo;
 25  
 
 26  
 
 27  
 /**
 28  
  *  This uses the State Service mock implementation to nail up some
 29  
  *  example data.
 30  
  */
 31  
 
 32  
 public class StateServiceMockDataImpl 
 33  
     extends StateServiceMockImpl {
 34  
 
 35  
     public StateServiceMockDataImpl()
 36  0
         throws Exception {
 37  
 
 38  0
         addLifecycle("kuali.atp.process", "ATP Lifecycle", "Lifecycle process for Academic Time Periods.", "");
 39  0
         addState("kuali.atp.process", "kuali.atp.state.Draft", "Draft", "Indicates that this ATP is tentative.");
 40  0
         addState("kuali.atp.process", "kuali.atp.state.Official", "Official", "Indicates that this ATP has been established.");
 41  
 
 42  0
         addLifecycle("kuali.milestone.process", "Milestone Lifecycle", "Lifecycle process for Milestones.", "");
 43  0
         addState("kuali.milestone.process", "kuali.milestone.state.Draft", "Draft", "Indicates that this Milestone is tentative.");
 44  0
         addState("kuali.milestone.process", "kuali.milestone.state.Official", "Official", "Indicates that this Milestone has been established.");        
 45  0
     }
 46  
 
 47  
     protected void addLifecycle(String key, String name, String desc, String ref)
 48  
         throws Exception {
 49  
 
 50  0
         LifecycleInfo lifecycle = new LifecycleInfo();
 51  0
         lifecycle.setName(name);
 52  
 
 53  0
         RichTextInfo rtDesc = new RichTextInfo();
 54  0
         rtDesc.setPlain(desc);
 55  0
         rtDesc.setFormatted(desc);
 56  0
         lifecycle.setDescr(rtDesc);
 57  
 
 58  0
         lifecycle.setRefObjectUri(ref);
 59  
 
 60  0
         createLifecycle(key, lifecycle, new ContextInfo());
 61  0
     }
 62  
 
 63  
     protected void addState(String lifecycleKey, String key, String name, String desc)
 64  
         throws Exception {
 65  
 
 66  0
         StateInfo state = new StateInfo();
 67  0
         state.setName(name);
 68  
 
 69  0
         RichTextInfo rtDesc = new RichTextInfo();
 70  0
         rtDesc.setPlain(desc);
 71  0
         rtDesc.setFormatted(desc);
 72  0
         state.setDescr(rtDesc);
 73  
 
 74  0
         createState(lifecycleKey, key, state, new ContextInfo());
 75  0
     }
 76  
 }