Coverage Report - org.kuali.student.r2.common.util.constants.CourseOfferingSetServiceConstants
 
Classes in this File Line Coverage Branch Coverage Complexity
CourseOfferingSetServiceConstants
0%
0/2
N/A
0
 
 1  
 /*
 2  
  * Copyright 2011 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 1.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.opensource.org/licenses/ecl1.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
 13  
  * implied.  See the License for the specific language governing
 14  
  * permissions and limitations under the License.
 15  
  */
 16  
 package org.kuali.student.r2.common.util.constants;
 17  
 
 18  
 import org.kuali.student.enrollment.courseofferingset.dto.SocInfo;
 19  
 import org.kuali.student.r2.common.constants.CommonServiceConstants;
 20  
 
 21  
 /**
 22  
  * Course Offering Service Constants
 23  
  * @see LuiServiceConstants
 24  
  *
 25  
  * @author nwright
 26  
  */
 27  0
 public class CourseOfferingSetServiceConstants {
 28  
 
 29  
     public static final String NAMESPACE = CommonServiceConstants.REF_OBJECT_URI_GLOBAL_PREFIX + "courseOfferingSet";
 30  
     public static final String SERVICE_NAME_LOCAL_PART = "socService";
 31  0
     public static final String REF_OBJECT_URI_SOC = NAMESPACE + "/" + SocInfo.class.getSimpleName();
 32  
     public static final String MAIN_SOC_TYPE_KEY = "kuali.soc.type.main";
 33  
     public static final String SUBJECT_AREA_SOC_TYPE_KEY = "kuali.soc.type.subject.area";
 34  
     public static final String UNITS_CONTENT_OWNER_SOC_TYPE_KEY = "kuali.soc.type.units.content.owner";
 35  
     public static final String UNITS_DEPLOYMENT_OWNER_SOC_TYPE_KEY = "kuali.soc.type.units.deployment.owner";
 36  
     public static final String ACTIVE_SOC_STATE_KEY = "kuali.soc.state.active";
 37  
     // rollover  types
 38  
     public static final String ROLLOVER_RESULT_TYPE_KEY = "kuali.soc.rollover.result.rollover";
 39  
     public static final String REVERSE_ROLLOVER_RESULT_TYPE_KEY = "kuali.soc.rollover.result.reverse";
 40  
     // states for rollover 
 41  
     public static final String SUBMITTED_RESULT_STATE_KEY = "kuali.soc.rollover.state.submitted";
 42  
     public static final String RUNNING_RESULT_STATE_KEY = "kuali.soc.rollover.state.running";
 43  
     public static final String FINISHED_RESULT_STATE_KEY = "kuali.soc.rollover.state.finished";
 44  
     public static final String ABORTED_RESULT_STATE_KEY = "kuali.soc.rollover.state.aborted";
 45  
     // item types
 46  
     public static final String CREATE_RESULT_ITEM_TYPE_KEY = "kuali.soc.rollover.result.item.create";
 47  
     public static final String DELETE_RESULT_ITEM_TYPE_KEY = "kuali.soc.rollover.result.item.delete";
 48  
     // item  states
 49  
     public static final String SUCCESS_RESULT_ITEM_STATE_KEY = "kuali.soc.rollover.item.state.success";
 50  
     public static final String ERROR_RESULT_ITEM_STATE_KEY = "kuali.soc.rollover.item.state.error";
 51  
     public static final String WARNING_RESULT_ITEM_STATE_KEY = "kuali.soc.rollover.item.state.warning";
 52  
     public static final String INFO_RESULT_ITEM_STATE_KEY = "kuali.soc.rollover.item.state.info";
 53  
     // dynamic attribute key for parameters
 54  
     public static final String PARAMETER_SOURCE_SOC_ID_ATTR_KEY = "kuali.parameter.source.soc.id";
 55  
     public static final String PARAMETER_TARGET_TERM_ID_ATTR_KEY = "kuali.parameter.target.term.id";
 56  
     public static final String PARAMETER_OPTION_KEY_ATTR_KEY = "kuali.parameter.option.key";
 57  
     // dynamic attribute key for results
 58  
     public static final String GLOBAL_RESULT_TARGET_SOC_ID_ATTR_KEY = "kuali.global.result.targetSocId";
 59  
     // which courses
 60  
     public static final String STILL_OFFERABLE_OPTION_KEY = "kuali.rollover.whatcourses.stillofferable";
 61  
     public static final String IF_NO_NEW_VERSION_OPTION_KEY = "kuali.rollover.whatcourses.ifnonewversion";
 62  
     public static final String IGNORE_CANCELLED_OPTION_KEY = "kuali.rollover.whatcourses.ignorecancelled";
 63  
     public static final String SKIP_IF_ALREADY_EXISTS_OPTION_KEY = "kuali.rollover.whatcourses.skipifalreadyexists";
 64  
     // what data
 65  
     public static final String USE_CANNONICAL_OPTION_KEY = "kuali.rollover.whatdata.usecanonical";
 66  
     public static final String NO_SCHEDULE_OPTION_KEY = "kuali.rollover.whatdata.noschedule";
 67  
     public static final String NO_INSTRUCTORS_OPTION_KEY = "kuali.rollover.whatdata.noinstructors";
 68  
     // general processing
 69  
     public static final String LOG_SUCCESSES_OPTION_KEY = "kuali.rollover.processing.log.successes";
 70  
     public static final String LOG_FREQUENCY_OPTION_KEY_PREFIX = "kuali.rollover.processing.log.frequency.";
 71  
     public static final String HALT_ERRORS_MAX_OPTION_KEY_PREFIX = "kuali.rollover.processing.halt.error.max.";
 72  
     public static final String RUN_SYNCHRONOUSLY_OPTION_KEY = "kuali.rollover.processing.run.synchronously";
 73  
     
 74  
     // general processing
 75  
     public static final String REVERSE_JUST_CREATES_OPTION_KEY = "kuali.reverse.rollover.just.creates";
 76  
     // canonical to course offering options
 77  
     public static final String CREDITS_MATCH_SCHEDULED_HOURS_OPTION_KEY = "kuali.canonical.course.to.course.offering.credits.match.scheduled.hours";
 78  
     public static final String NOT_COURSE_TITLE_OPTION_KEY = "kuali.canonical.course.to.course.offering.not.title";
 79  
 }