001 /** 002 * Copyright 2004-2014 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 package org.kuali.student.contract.model; 017 018 /** 019 * 020 * @author nwright 021 */ 022 public class ServiceMethodError { 023 024 private String packageName; 025 private String className; 026 private String description; 027 private String type; 028 029 public String getType() { 030 return type; 031 } 032 033 public void setType(String type) { 034 this.type = type; 035 } 036 037 public String getDescription() { 038 return description; 039 } 040 041 public void setDescription(String description) { 042 this.description = description; 043 } 044 045 public String getPackageName() { 046 return packageName; 047 } 048 049 public void setPackageName(String packageName) { 050 this.packageName = packageName; 051 } 052 053 public String getClassName() { 054 return className; 055 } 056 057 public void setClassName(String className) { 058 this.className = className; 059 } 060 061 @Override 062 public String toString() { 063 return "ServiceMethodError{" + 064 "packageName='" + packageName + '\'' + 065 ", className='" + className + '\'' + 066 ", description='" + description + '\'' + 067 ", type='" + type + '\'' + 068 '}'; 069 } 070 }