This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 228033
Collapse All | Expand All

(-)a/j2ee.dd/apichanges.xml (+16 lines)
Lines 125-130 Link Here
125
            <package name="org.netbeans.modules.j2ee.dd.api.common"/>
125
            <package name="org.netbeans.modules.j2ee.dd.api.common"/>
126
            <issue number="53320"/>
126
            <issue number="53320"/>
127
        </change>
127
        </change>
128
        <change id="javaEE7DDVersionsAdded">
129
            <api name="J2EEDDAPI"/>
130
            <summary>Added deployment descriptors versions for the JavaEE7.</summary>
131
            <version major="1" minor="29"/>
132
            <date day="28" month="3" year="2013"/>
133
            <author login="marfous@netbeans.org"/>
134
            <compatibility addition="yes" binary="compatible" source="compatible" semantic="compatible" modification="no" deprecation="no"/>
135
            <description>
136
                New DD versions of the ejb-jar.xml, web.xml, web-fragment.xml, application.xml, application-client.xml for JavaEE7 platform.
137
            </description>
138
            <class package="org.netbeans.modules.j2ee.dd.api.application" name="Application"/>
139
            <class package="org.netbeans.modules.j2ee.dd.api.client" name="AppClient"/>
140
            <class package="org.netbeans.modules.j2ee.dd.api.ejb" name="EjbJar"/>
141
            <class package="org.netbeans.modules.j2ee.dd.api.web" name="WebApp"/>
142
            <issue number="######"/>
143
        </change>
128
144
129
    </changes>
145
    </changes>
130
146
(-)a/j2ee.dd/src/org/netbeans/modules/j2ee/dd/api/application/Application.java (+6 lines)
Lines 61-66 Link Here
61
        public static final String VERSION_1_4="1.4"; //NOI18N
61
        public static final String VERSION_1_4="1.4"; //NOI18N
62
        public static final String VERSION_5="5"; //NOI18N
62
        public static final String VERSION_5="5"; //NOI18N
63
        public static final String VERSION_6="6"; //NOI18N
63
        public static final String VERSION_6="6"; //NOI18N
64
65
        /**
66
         * application.xml DD version for JavaEE7
67
         * @since 1.29
68
         */
69
        public static final String VERSION_7 = "7"; //NOI18N
64
        public static final int STATE_VALID=0;
70
        public static final int STATE_VALID=0;
65
        public static final int STATE_INVALID_PARSABLE=1;
71
        public static final int STATE_INVALID_PARSABLE=1;
66
        public static final int STATE_INVALID_UNPARSABLE=2;
72
        public static final int STATE_INVALID_UNPARSABLE=2;
(-)a/j2ee.dd/src/org/netbeans/modules/j2ee/dd/api/client/AppClient.java (+6 lines)
Lines 62-67 Link Here
62
    public static final String VERSION_1_4="1.4"; //NOI18N
62
    public static final String VERSION_1_4="1.4"; //NOI18N
63
    public static final String VERSION_5_0="5"; //NOI18N
63
    public static final String VERSION_5_0="5"; //NOI18N
64
    public static final String VERSION_6_0="6"; //NOI18N
64
    public static final String VERSION_6_0="6"; //NOI18N
65
66
    /**
67
     * application-client.xml DD version for JavaEE7
68
     * @since 1.29
69
     */
70
    public static final String VERSION_7_0 = "7"; //NOI18N
65
    public static final int STATE_VALID=0;
71
    public static final int STATE_VALID=0;
66
    public static final int STATE_INVALID_PARSABLE=1;
72
    public static final int STATE_INVALID_PARSABLE=1;
67
    public static final int STATE_INVALID_UNPARSABLE=2;
73
    public static final int STATE_INVALID_UNPARSABLE=2;
(-)a/j2ee.dd/src/org/netbeans/modules/j2ee/dd/api/ejb/EjbJar.java (+6 lines)
Lines 62-67 Link Here
62
    public static final String VERSION_2_1="2.1"; //NOI18N
62
    public static final String VERSION_2_1="2.1"; //NOI18N
63
    public static final String VERSION_3_0="3.0"; //NOI18N
63
    public static final String VERSION_3_0="3.0"; //NOI18N
64
    public static final String VERSION_3_1="3.1"; //NOI18N
64
    public static final String VERSION_3_1="3.1"; //NOI18N
65
66
    /**
67
     * ejb-jar.xml DD version for JavaEE7
68
     * @since 1.29
69
     */
70
    public static final String VERSION_3_2 = "3.2"; //NOI18N
65
    public static final int STATE_VALID=0;
71
    public static final int STATE_VALID=0;
66
    public static final int STATE_INVALID_PARSABLE=1;
72
    public static final int STATE_INVALID_PARSABLE=1;
67
    public static final int STATE_INVALID_UNPARSABLE=2;
73
    public static final int STATE_INVALID_UNPARSABLE=2;
(-)a/j2ee.dd/src/org/netbeans/modules/j2ee/dd/api/web/WebApp.java (+6 lines)
Lines 70-75 Link Here
70
    static final String VERSION_2_4 = "2.4"; //NOI18N
70
    static final String VERSION_2_4 = "2.4"; //NOI18N
71
    static final String VERSION_2_5 = "2.5"; //NOI18N
71
    static final String VERSION_2_5 = "2.5"; //NOI18N
72
    static final String VERSION_3_0 = "3.0"; //NOI18N
72
    static final String VERSION_3_0 = "3.0"; //NOI18N
73
74
    /**
75
     * web.xml, web-fragment.xml DD version for JavaEE7
76
     * @since 1.29
77
     */
78
    static final String VERSION_3_1 = "3.1"; //NOI18N
73
    static final int STATE_VALID = 0;
79
    static final int STATE_VALID = 0;
74
    static final int STATE_INVALID_PARSABLE = 1;
80
    static final int STATE_INVALID_PARSABLE = 1;
75
    static final int STATE_INVALID_UNPARSABLE = 2;
81
    static final int STATE_INVALID_UNPARSABLE = 2;

Return to bug 228033