1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.ken.api;
17
18 import org.kuali.rice.core.api.CoreConstants;
19
20
21
22
23
24
25 public final class KenApiConstants {
26 public static final String KENAPI_SERVICE = "KEN-KENAPIService";
27
28 public final static String SERVICE_PATH_SOAP = "soap/" + Namespaces.MODULE_NAME + "/" + CoreConstants.Versions.VERSION_2_0;
29
30
31 public static final class Namespaces {
32 public static final String MODULE_NAME = "ken";
33
34 public static final String KEN_NAMESPACE_PREFIX = CoreConstants.Namespaces.ROOT_NAMESPACE_PREFIX + "/ken";
35
36
37
38
39 public static final String KEN_NAMESPACE_2_0 = KEN_NAMESPACE_PREFIX + "/" + CoreConstants.Versions.VERSION_2_0;
40
41 private Namespaces() {
42 throw new UnsupportedOperationException("do not call");
43 }
44 }
45
46 public static final class ServiceNames {
47 public static final String SEND_NOTIFICATION_SERVICE = "sendNotificationService";
48 }
49
50 public static final class NotificationConstants {
51
52 }
53
54 public static final class RESPONSE_STATUSES {
55 public static final String SUCCESS = "Success";
56 public static final String FAILURE = "Failure";
57
58 private RESPONSE_STATUSES() {
59 throw new UnsupportedOperationException("do not call");
60 }
61 }
62
63 private KenApiConstants() {
64 throw new UnsupportedOperationException("do not call");
65 }
66 }