1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.contract.model;
17
18
19
20
21
22 public class ServiceMethodParameter {
23
24 private String name;
25
26
27
28
29
30
31 public String getName() {
32 return name;
33 }
34
35
36
37
38
39
40 public void setName(String name) {
41 this.name = name;
42 }
43 protected String type;
44
45 public String getType() {
46 return type;
47 }
48
49 public void setType(String type) {
50 this.type = type;
51 }
52 private String description;
53
54 public String getDescription() {
55 return description;
56 }
57
58 public void setDescription(String description) {
59 this.description = description;
60 }
61 private String url;
62
63 public String getUrl() {
64 return url;
65 }
66
67 public void setUrl(String url) {
68 this.url = url;
69 }
70
71 @Override
72 public String toString() {
73 return "ServiceMethodParameter{" +
74 "name='" + name + '\'' +
75 ", type='" + type + '\'' +
76 ", description='" + description + '\'' +
77 ", url='" + url + '\'' +
78 '}';
79 }
80 }