KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > resource > deployment > ds > DsSubDeployerMBean


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
23 package org.jboss.resource.deployment.ds;
24
25 import javax.management.ObjectName JavaDoc;
26
27 import org.jboss.deployment.SubDeployerExtMBean;
28 import org.jboss.mx.util.ObjectNameFactory;
29
30 /**
31  *
32  * The DsSubDeployer Management interface.
33  *
34  * @author <a HREF="weston.price@jboss.com">Weston Price</a>
35  * @version $Revision: 45527 $
36  */

37 public interface DsSubDeployerMBean extends SubDeployerExtMBean
38 {
39
40    /** The OBJECT_NAME */
41    static final ObjectName JavaDoc OBJECT_NAME = ObjectNameFactory.create("jboss.jca:service=DsDeployer");
42
43    /**
44     * FIXME Comment this
45     *
46     * @param packageSuffix
47     */

48    void setPackageSuffix(String JavaDoc packageSuffix);
49
50    /**
51     * FIXME Comment this
52     *
53     * @return
54     */

55    String JavaDoc getPackageSuffix();
56
57    /**
58     * FIXME Comment this
59     *
60     * @param ddSuffix
61     */

62    void setDdSuffix(String JavaDoc ddSuffix);
63
64    /**
65     * FIXME Comment this
66     *
67     * @return
68     */

69    String JavaDoc getDdSuffix();
70
71    /**
72     * FIXME Comment this
73     *
74     * @param delegateName
75     */

76    void setDelegateName(ObjectName JavaDoc delegateName);
77
78    /**
79     * FIXME Comment this
80     *
81     * @return
82     */

83    ObjectName JavaDoc getDelegateName();
84
85    /**
86     * FIXME Comment this
87     *
88     * @param validate
89     */

90    void setValidateDTDs(boolean validate);
91
92    /**
93     * FIXME Comment this
94     *
95     * @return
96     */

97    boolean getValidateDTDs();
98
99    public void setBuilderName(String JavaDoc builderName);
100    
101    public String JavaDoc getBuilderName();
102    
103    
104 }
105
Popular Tags