1 /****************************************************************************
2 * Copyright (c) 2005, 2006, 2007, 2008, 2009 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 package it.imolinfo.jbi4corba.jbi.component.runtime;
9
10
11 import it.imolinfo.jbi4corba.LoggerFactory;
12 import it.imolinfo.jbi4corba.Logger;
13
14 /**
15 * Installer Extension MBean, allow configuration to be changed before installation
16 */
17 public class InstallerExt implements InstallerExtMBean {
18
19 String mOutboundThreads;
20
21
22 private static final Logger LOG = LoggerFactory
23 .getLogger(InstallerExt.class);
24
25 /** Creates a new instance of InstallerExt */
26 public InstallerExt() {
27 }
28
29 public String getOutboundThreads() {
30 LOG.info("CRB000440_Number_of_outbound_threads",new Object[] {mOutboundThreads});
31
32 return mOutboundThreads;
33 }
34 public void setOutboundThreads(String val) {
35 LOG.info("CRB000441_Setting_number_of_outbound_threads_to",new Object[] {val});
36
37 mOutboundThreads = val;
38 }
39
40
41
42 }
43