KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > hero > util > BonitaConfigServiceMBean


1 package hero.util;
2
3 import org.objectweb.jonas.service.ServiceException;
4
5 /**
6 *
7 * Bonita
8 * Copyright (C) 1999 Bull S.A.
9 * Bull 68 route de versailles 78434 Louveciennes Cedex France
10 * Further information: bonita@objectweb.org
11 *
12 * This library is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public
14 * License as published by the Free Software Foundation; either
15 * version 2.1 of the License, or any later version.
16 *
17 * This library is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Lesser General Public License for more details.
21 *
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with this library; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
25 * USA
26 *
27 *
28 --------------------------------------------------------------------------
29 * $Id: BonitaConfigServiceMBean.java,v 1.2 2004/11/29 12:29:48 mvaldes Exp $
30 *
31 --------------------------------------------------------------------------
32 */

33 public interface BonitaConfigServiceMBean {
34         
35     public boolean getProcessJMS(String JavaDoc projectName) throws ServiceException;
36     public boolean getProcessLog(String JavaDoc projectName) throws ServiceException;
37     public boolean getProcessTrace(String JavaDoc projectName) throws ServiceException;
38     public String JavaDoc getProcessLogLevel(String JavaDoc projectName) throws ServiceException;
39     public String JavaDoc getProcessTraceLevel(String JavaDoc projectName) throws ServiceException;
40     public String JavaDoc getProcessHistoric(String JavaDoc projectName) throws ServiceException;
41     
42     public void setProcessJMS(String JavaDoc projectName, boolean value) throws ServiceException;
43     public void setProcessLog(String JavaDoc projectName, boolean value) throws ServiceException;
44     public void setProcessTrace(String JavaDoc projectName, boolean value) throws ServiceException;
45     public void setProcessLogLevel(String JavaDoc projectName, String JavaDoc value) throws ServiceException;
46     public void setProcessTraceLevel(String JavaDoc projectName, String JavaDoc value) throws ServiceException;
47     public void setProcessHistoric(String JavaDoc projectName, String JavaDoc value) throws ServiceException;
48
49     public void updateJMS(boolean value) throws ServiceException;
50     public void updateLog(boolean value) throws ServiceException;
51     public void updateTrace(boolean value) throws ServiceException;
52     public void updateLogLevel(String JavaDoc value) throws ServiceException;
53     public void updateTraceLevel(String JavaDoc value) throws ServiceException;
54     public void updateHistoric(String JavaDoc value) throws ServiceException;
55     
56     
57 }
58
Popular Tags