taken form the jboss_7_0.xsd :


 <xs:complexType name="deploymentType">
        <xs:annotation>
            <xs:documentation>Deployment represents anything that can be deployed (e.g. an application such as EJB-JAR,
                WAR, EAR,
                any kind of standard archive such as RAR or JBoss-specific deployment),
                which can be enabled or disabled on a domain level.
            </xs:documentation>
        </xs:annotation>
        <xs:complexContent>
            <xs:extension base="mapped-deploymentType">
                <xs:attribute name="allowed" use="optional" type="xs:boolean" default="true">
                    <xs:annotation>
                        <xs:documentation>Whether the mapping the deployment to a server group is allowed.
                        </xs:documentation>
                    </xs:annotation>
                </xs:attribute>
            </xs:extension>
        </xs:complexContent>
    </xs:complexType>


Can somebody explain the attribute "allowed" to me? What does it mean, if a deployment is not "allowed" to be mapped
to a server group? Is this an equivalent to "disabled"?

Ike