1 package org.kuali.rice.ksb.api;
2
3 import org.kuali.rice.core.api.CoreConstants;
4
5
6
7
8
9
10
11 public final class KsbApiConstants {
12
13
14
15
16 public static final String KSB_MODULE_NAME = "KSB";
17
18
19
20
21 public static final class ServiceTypes {
22
23
24
25
26 public static final String HTTP_INVOKER = "httpInvoker";
27
28
29
30
31 public static final String SOAP = "SOAP";
32
33
34
35
36 public static final String REST = "REST";
37
38 }
39
40
41
42
43 public static final class Namespaces {
44
45
46
47
48 public static final String KSB_NAMESPACE_2_0 = CoreConstants.Namespaces.ROOT_NAMESPACE_PREFIX + "/ksb/" + CoreConstants.Versions.VERSION_2_0;
49
50 }
51
52 private KsbApiConstants() {
53 throw new UnsupportedOperationException("Should never be called!");
54 }
55
56 }