ConverterBslJServiceMBean.java
1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.adobe.service.PoolingAttributes
* com.adobe.service.ProcessAttributes
* com.adobe.service.ServiceMBean
*/
package com.adobe.native2pdf.bmc;
import com.adobe.service.PoolingAttributes;
import com.adobe.service.ProcessAttributes;
import com.adobe.service.ServiceMBean;
public interface ConverterBslJServiceMBean
extends ServiceMBean,
PoolingAttributes,
ProcessAttributes {
public String about();
public boolean getDebug();
public void setDebug(boolean var1);
public int getPoolMax();
public void setPoolMax(int var1);
public String getORBParams();
public void setORBParams(String var1);
public String getRunConversionVisibly();
public void setRunConversionVisibly(String var1);
public boolean getReUseAppComponent();
public void setReUseAppComponent(boolean var1);
public String getJVMOptions();
public void setJVMOptions(String var1);
public long getGlobalTimeout();
public void setGlobalTimeout(long var1);
}