KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > invocation > unified > server > UnifiedInvokerMBean


1 /*
2 * JBoss, Home of Professional Open Source
3 * Copyright 2005, JBoss Inc., and individual contributors as indicated
4 * by the @authors tag. See the copyright.txt in the distribution for a
5 * full listing of individual contributors.
6 *
7 * This is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU Lesser General Public License as
9 * published by the Free Software Foundation; either version 2.1 of
10 * the License, or (at your option) any later version.
11 *
12 * This software is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this software; if not, write to the Free
19 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21 */

22 package org.jboss.invocation.unified.server;
23
24 import org.jboss.system.ServiceMBean;
25 import org.jboss.remoting.ServerInvocationHandler;
26 import org.jboss.remoting.transport.ConnectorMBean;
27
28 /**
29  * @author <a HREF="mailto:tom.elrod@jboss.com">Tom Elrod</a>
30  */

31 public interface UnifiedInvokerMBean extends ServiceMBean, ServerInvocationHandler
32 {
33    public String JavaDoc getInvokerLocator();
34
35    /**
36     * If set to true, this will cause the UnifiedInvokerProxy (on the client side) to
37     * wrap all RemoteExceptions thrown from the server in a new ServerException. If false,
38     * will unwrap the original exception thrown from withint the RemoteException and throw that.
39     * The default is false.
40     * @param isStrict
41     */

42    void setStrictRMIException(boolean isStrict);
43
44    /**
45     * A return of true means that the UnifiedInvokerProxy (on the client side) will wrap all
46     * RemoteExceptions within a new ServerException. A return of false, will unwrap the original
47     * exception thrown from within the RemoteException and throw that. The default, if not explicitly set,
48     * is false.
49     * @return
50     */

51    boolean getStrictRMIException();
52
53    /**
54     * This may be called if set depends in config with optional-attribute-name.
55     * @param connector
56     */

57    void setConnector(ConnectorMBean connector);
58
59    /**
60     * Gets the subsystem that the invoker will be registered under within remoting connector
61     * @return
62     */

63    String JavaDoc getSubSystem();
64
65    /**
66     * Sets the subsystem that the invoker will be registered under within remoting connector.
67     * @param subsystem
68     */

69    void setSubSystem(String JavaDoc subsystem);
70 }
Popular Tags