Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Prefix

Namespace

Description

xml

http://www.w3.org/XML/1998/namespace

The namespace whose name is

http://www.w3.org/XML/1998/namespace

is bound by definition to the prefix xml: according to Namespaces in XML, W3C Recommendation 14 Jan 1999

geronimo

http://geronimo.apache.org/xml/ns/j2ee/application-1.1

This is the target name space defined for geronimo ear applications

security

http://geronimo.apache.org/xml/ns/security-1.1

This schema describes Common security elements used by other plans in Security Mapping module.

sys

http://geronimo.apache.org/xml/ns/deployment-1.1

This schema Used to deploy new services in Geronimo in a standalone plan, and also contains common elements used by many other plans and the module type is Server Plans & Common Elements

xs

http://www.w3.org/2001/XMLSchema

This document describes the XML Schema namespace. It also contains a directory of links to these related resources, using Resource Directory Description Language http://www.rddl.org/

Code Block
xml
xml
borderStylesolid
titleSchema Component Representation
xs:schema
    xmlns:geronimo="http://geronimo.apache.org/xml/ns/j2ee/application-1.1"
    targetNamespace="http://geronimo.apache.org/xml/ns/j2ee/application-1.1"
    xmlns:security="http://geronimo.apache.org/xml/ns/security-1.1"
    xmlns:sys="http://geronimo.apache.org/xml/ns/deployment-1.1"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    elementFormDefault="qualified"
    attributeFormDefault="unqualified"
    version="1.0">
    <xs:import namespace="http://geronimo.apache.org/xml/ns/security-1.1" schemaLocation="geronimo-security-1.1.xsd"/>
    <xs:import namespace="http://geronimo.apache.org/xml/ns/deployment-1.1" schemaLocation="geronimo-module-1.1.xsd"/>

......
</xs schema>

...