Coverage Report - org.kuali.student.contract.model.validation.ServiceMethodErrorValidator
 
Classes in this File Line Coverage Branch Coverage Complexity
ServiceMethodErrorValidator
0%
0/16
0%
0/6
1.75
 
 1  
 /*
 2  
  * Copyright 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.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 implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.student.contract.model.validation;
 17  
 
 18  
 import org.kuali.student.contract.model.ServiceMethod;
 19  
 import org.kuali.student.contract.model.ServiceMethodError;
 20  
 
 21  
 import java.util.ArrayList;
 22  
 import java.util.Collection;
 23  
 
 24  
 /**
 25  
  * This validates a single criteriainoary entry
 26  
  * @author nwright
 27  
  */
 28  
 public class ServiceMethodErrorValidator implements ModelValidator {
 29  
 
 30  
     private ServiceMethodError error;
 31  
     private ServiceMethod method;
 32  
 
 33  
     public ServiceMethodErrorValidator(ServiceMethodError error,
 34  0
             ServiceMethod method) {
 35  0
         this.error = error;
 36  0
         this.method = method;
 37  0
     }
 38  
     private Collection errors;
 39  
 
 40  
     @Override
 41  
     public Collection<String> validate() {
 42  0
         errors = new ArrayList();
 43  0
         basicValidation();
 44  0
         return errors;
 45  
     }
 46  
 
 47  
     private void basicValidation() {
 48  0
         if (error.getDescription().equals("")) {
 49  0
             addError("Description is required");
 50  
         }
 51  0
         if (error.getType().equals("")) {
 52  0
             addError("Type is required");
 53  
         }
 54  0
     }
 55  
 
 56  
     private void addError(String msg) {
 57  0
         String error = "Error in error " + method.getService() + "."
 58  
                 + method.getName()
 59  
                 + ": " + msg;
 60  0
         if (!errors.contains(error)) {
 61  0
             errors.add(error);
 62  
         }
 63  0
     }
 64  
 }