KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > hibernate > har > HARDeployerMBean


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package org.jboss.hibernate.har;
8
9 /**
10  * MBean interface.
11  * @xdoclet-generated at May 17 2005
12  * @copyright The XDoclet Team
13  * @author XDoclet
14  * @version ${version}
15  */

16 public interface HARDeployerMBean extends org.jboss.deployment.SubDeployerMBean
17 {
18
19    //default object name
20
public static final javax.management.ObjectName JavaDoc OBJECT_NAME = org.jboss.mx.util.ObjectNameFactory
21          .create("jboss.har:service=HARDeployer");
22
23    /**
24     * Returns the deployed applications.
25     */

26    java.util.Iterator JavaDoc getDeployedApplications();
27
28    /**
29     * Get the flag indicating that ejb-jar.dtd, jboss.dtd & jboss-web.dtd conforming documents should be validated against the DTD.
30     */

31    boolean getValidateDTDs();
32
33    /**
34     * Set the flag indicating that ejb-jar.dtd, jboss.dtd & jboss-web.dtd conforming documents should be validated against the DTD.
35     */

36    void setValidateDTDs(boolean validate);
37
38 }
39
Popular Tags