1
2
3
4
5
6
7
8
9
10 package it.imolinfo.jbi4cics.jbi;
11
12 import org.apache.servicemix.common.PersistentConfiguration;
13
14 public class Jbi4cicsComponentConfiguration extends PersistentConfiguration
15 implements Jbi4cicsConfigurationMBean{
16
17 private boolean fakeBooleanProperty;
18
19 public Jbi4cicsComponentConfiguration() {
20 }
21
22 public boolean isFakeBooleanProperty() {
23 return fakeBooleanProperty;
24 }
25
26 public void setFakeBooleanProperty(final boolean fakeBooleanProperty){
27 this.fakeBooleanProperty = fakeBooleanProperty;
28 }
29 }