@@ -30,6 +30,7 @@ public class ClientServicesResourceImpl implements ClientServicesResource {
30
30
31
31
private final ClientServices backing = Didums .getService (ClientServices .class );
32
32
33
+ @ Override
33
34
public RetrieveTablesResponse retrieveTables ()
34
35
throws RestBusinessException {
35
36
try {
@@ -40,6 +41,7 @@ public RetrieveTablesResponse retrieveTables()
40
41
}
41
42
}
42
43
44
+ @ Override
43
45
public RetrieveCodesResponse retrieveCodes (final String table )
44
46
throws RestBusinessException {
45
47
try {
@@ -50,6 +52,7 @@ public RetrieveCodesResponse retrieveCodes(final String table)
50
52
}
51
53
}
52
54
55
+ @ Override
53
56
public SearchClientsResponse searchClients (final String search )
54
57
throws RestBusinessException {
55
58
try {
@@ -60,6 +63,7 @@ public SearchClientsResponse searchClients(final String search)
60
63
}
61
64
}
62
65
66
+ @ Override
63
67
public ClientDetailResponse retrieveClient (final String clientId )
64
68
throws RestBusinessException {
65
69
try {
@@ -70,6 +74,7 @@ public ClientDetailResponse retrieveClient(final String clientId)
70
74
}
71
75
}
72
76
77
+ @ Override
73
78
public ClientDetailResponse createClient (final ClientDetail detail )
74
79
throws RestBusinessException {
75
80
try {
@@ -80,6 +85,7 @@ public ClientDetailResponse createClient(final ClientDetail detail)
80
85
}
81
86
}
82
87
88
+ @ Override
83
89
public ClientDetailResponse updateClient (final String clientId , final ClientDetail detail )
84
90
throws RestBusinessException {
85
91
// Check IDs
@@ -94,6 +100,7 @@ public ClientDetailResponse updateClient(final String clientId, final ClientDeta
94
100
}
95
101
}
96
102
103
+ @ Override
97
104
public Response deleteClient (final String clientId )
98
105
throws RestBusinessException {
99
106
try {
@@ -104,6 +111,7 @@ public Response deleteClient(final String clientId)
104
111
}
105
112
}
106
113
114
+ @ Override
107
115
public RetrieveClientDocumentsResponse retrieveClientDocuments (final String clientId )
108
116
throws RestBusinessException {
109
117
try {
@@ -114,6 +122,7 @@ public RetrieveClientDocumentsResponse retrieveClientDocuments(final String clie
114
122
}
115
123
}
116
124
125
+ @ Override
117
126
public DocumentContentResponse retrieveDocument (final String documentId )
118
127
throws RestBusinessException {
119
128
try {
0 commit comments