View Javadoc

1   /*
2    *  Copyright (c) 2005, 2006 Imola Informatica.
3    *  All rights reserved. This program and the accompanying materials
4    *  are made available under the terms of the LGPL License v2.1
5    *  which accompanies this distribution, and is available at
6    *  http://www.gnu.org/licenses/lgpl.html
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  }