1
2
3
4
5
6
7
8
9
10
11 package org.mule.api.config;
12
13
14
15
16
17 public interface MuleConfiguration
18 {
19 int getDefaultResponseTimeout();
20
21 String getWorkingDirectory();
22
23 String getMuleHomeDirectory();
24
25 int getDefaultTransactionTimeout();
26
27 boolean isClientMode();
28
29 String getDefaultEncoding();
30
31 String getId();
32
33 String getClusterId();
34
35 String getDomainId();
36
37 String getSystemModelType();
38
39 String getSystemName();
40
41 boolean isAutoWrapMessageAwareTransform();
42
43 boolean isCacheMessageAsBytes();
44
45 boolean isCacheMessageOriginalPayload();
46
47 boolean isEnableStreaming();
48
49 boolean isValidateExpressions();
50
51 int getDefaultQueueTimeout();
52
53 int getShutdownTimeout();
54
55 boolean isContainerMode();
56 }