Coverage Report - org.kuali.student.contract.model.validation.ServiceMethodParameterValidator
 
Classes in this File Line Coverage Branch Coverage Complexity
ServiceMethodParameterValidator
0%
0/18
0%
0/8
2
 
 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.ServiceMethodParameter;
 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 ServiceMethodParameterValidator implements ModelValidator
 29  
 {
 30  
 
 31  
  private ServiceMethodParameter parameter;
 32  
  private ServiceMethod method;
 33  
 
 34  
  public ServiceMethodParameterValidator (ServiceMethodParameter parameter,
 35  
                                          ServiceMethod method)
 36  0
  {
 37  0
   this.parameter = parameter;
 38  0
   this.method = method;
 39  0
  }
 40  
 
 41  
  private Collection errors;
 42  
 
 43  
  @Override
 44  
  public Collection<String> validate ()
 45  
  {
 46  0
   errors = new ArrayList ();
 47  0
   basicValidation ();
 48  0
   return errors;
 49  
  }
 50  
 
 51  
  private void basicValidation ()
 52  
  {
 53  0
   if (parameter.getName ().equals (""))
 54  
   {
 55  0
    addError ("Name is required");
 56  
   }
 57  0
   if (parameter.getDescription ().equals (""))
 58  
   {
 59  0
    addError ("Description is required");
 60  
   }
 61  0
   if (parameter.getType ().equals (""))
 62  
   {
 63  0
    addError ("Type is required");
 64  
   }
 65  0
  }
 66  
 
 67  
  private void addError (String msg)
 68  
  {
 69  0
   String error = "Error in parameter: " + method.getService () + "." +
 70  
    method.getName () + "(" + parameter.getName () +
 71  
    "): " + msg;
 72  0
   if ( ! errors.contains (error))
 73  
   {
 74  0
    errors.add (error);
 75  
   }
 76  0
  }
 77  
 
 78  
 }