Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 67388 invoked from network); 13 Sep 2010 17:00:48 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 13 Sep 2010 17:00:48 -0000 Received: (qmail 59129 invoked by uid 500); 13 Sep 2010 17:00:48 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 59079 invoked by uid 500); 13 Sep 2010 17:00:48 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 59072 invoked by uid 99); 13 Sep 2010 17:00:48 -0000 Received: from Unknown (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Sep 2010 17:00:48 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Sep 2010 17:00:44 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 501522388C72; Mon, 13 Sep 2010 16:59:30 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r996601 [25/25] - in /geronimo/devtools/eclipse-plugin/trunk/plugins: org.apache.geronimo.st.schemas/v30/ org.apache.geronimo.st.v11.ui/META-INF/ org.apache.geronimo.st.v30.core/META-INF/ org.apache.geronimo.st.v30.jaxbmodel/META-INF/ org.a... Date: Mon, 13 Sep 2010 16:59:26 -0000 To: scm@geronimo.apache.org From: delos@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100913165930.501522388C72@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v30.jaxbmodel/src/main/java/org/apache/geronimo/jee/web/ObjectFactory.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v30.jaxbmodel/src/main/java/org/apache/geronimo/jee/web/ObjectFactory.java?rev=996601&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v30.jaxbmodel/src/main/java/org/apache/geronimo/jee/web/ObjectFactory.java (added) +++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v30.jaxbmodel/src/main/java/org/apache/geronimo/jee/web/ObjectFactory.java Mon Sep 13 16:59:20 2010 @@ -0,0 +1,85 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.geronimo.jee.web; + +import javax.xml.bind.JAXBElement; +import javax.xml.bind.annotation.XmlElementDecl; +import javax.xml.bind.annotation.XmlRegistry; +import javax.xml.namespace.QName; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the org.apache.geronimo.xml.ns.j2ee.web_2_0 package. + *

An ObjectFactory allows you to programatically + * construct new instances of the Java representation + * for XML content. The Java representation of XML + * content can consist of schema derived interfaces + * and classes representing the binding of schema + * type definitions, element declarations and model + * groups. Factory methods for each of these are + * provided in this class. + * + */ +@XmlRegistry +public class ObjectFactory { + + private final static QName _WebApp_QNAME = new QName("http://geronimo.apache.org/xml/ns/j2ee/web-2.0.1", "web-app"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.apache.geronimo.xml.ns.j2ee.web_2_0 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link Authentication } + * + */ + public Authentication createAuthentication() { + return new Authentication(); + } + + /** + * Create an instance of {@link WebApp } + * + */ + public WebApp createWebApp() { + return new WebApp(); + } + + /** + * Create an instance of {@link ContainerConfig } + * + */ + public ContainerConfig createContainerConfig() { + return new ContainerConfig(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link WebApp }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://geronimo.apache.org/xml/ns/j2ee/web-2.0.1", name = "web-app") + public JAXBElement createWebApp(WebApp value) { + return new JAXBElement(_WebApp_QNAME, WebApp.class, null, value); + } + +} Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v30.jaxbmodel/src/main/java/org/apache/geronimo/jee/web/WebApp.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v30.jaxbmodel/src/main/java/org/apache/geronimo/jee/web/WebApp.java?rev=996601&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v30.jaxbmodel/src/main/java/org/apache/geronimo/jee/web/WebApp.java (added) +++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v30.jaxbmodel/src/main/java/org/apache/geronimo/jee/web/WebApp.java Mon Sep 13 16:59:20 2010 @@ -0,0 +1,629 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.geronimo.jee.web; + +import java.io.Serializable; +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.JAXBElement; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlElementRef; +import javax.xml.bind.annotation.XmlElementRefs; +import javax.xml.bind.annotation.XmlType; + +import org.apache.geronimo.jee.application.AbstractSecurity; +import org.apache.geronimo.jee.deployment.AbstractService; +import org.apache.geronimo.jee.deployment.Environment; +import org.apache.geronimo.jee.deployment.Gbean; +import org.apache.geronimo.jee.naming.AbstractNamingEntry; +import org.apache.geronimo.jee.naming.EjbLocalRef; +import org.apache.geronimo.jee.naming.EjbRef; +import org.apache.geronimo.jee.naming.EnvEntry; +import org.apache.geronimo.jee.naming.GbeanLocator; +import org.apache.geronimo.jee.naming.GbeanRef; +import org.apache.geronimo.jee.naming.MessageDestination; +import org.apache.geronimo.jee.naming.PersistenceContextRef; +import org.apache.geronimo.jee.naming.PersistenceUnitRef; +import org.apache.geronimo.jee.naming.ResourceEnvRef; +import org.apache.geronimo.jee.naming.ResourceRef; +import org.apache.geronimo.jee.naming.ServiceRef; +import org.apache.geronimo.jee.persistence.Persistence; +import org.apache.geronimo.jee.security.SecurityRef; + + +/** + *

Java class for web-appType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="web-appType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element ref="{http://geronimo.apache.org/xml/ns/deployment-1.2}environment" minOccurs="0"/>
+ *         <element name="context-root" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="work-dir" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element ref="{http://geronimo.apache.org/xml/ns/naming-1.2}web-container" minOccurs="0"/>
+ *         <element name="container-config" type="{http://geronimo.apache.org/xml/ns/j2ee/web-2.0.1}container-configType" minOccurs="0"/>
+ *         <group ref="{http://geronimo.apache.org/xml/ns/naming-1.2}jndiEnvironmentRefsGroup"/>
+ *         <element ref="{http://geronimo.apache.org/xml/ns/naming-1.2}message-destination" maxOccurs="unbounded" minOccurs="0"/>
+ *         <sequence minOccurs="0">
+ *           <element name="security-realm-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *           <element name="authentication" type="{http://geronimo.apache.org/xml/ns/j2ee/web-2.0.1}authenticationType" minOccurs="0"/>
+ *           <element ref="{http://geronimo.apache.org/xml/ns/j2ee/application-2.0}security" minOccurs="0"/>
+ *         </sequence>
+ *         <choice maxOccurs="unbounded" minOccurs="0">
+ *           <element ref="{http://geronimo.apache.org/xml/ns/deployment-1.2}service" maxOccurs="unbounded" minOccurs="0"/>
+ *           <element ref="{http://java.sun.com/xml/ns/persistence}persistence"/>
+ *         </choice>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "web-appType", propOrder = { + "environment", + "contextRoot", + "workDir", + "webContainer", + "containerConfig", + "abstractNamingEntry", + "envEntry", + "ejbRef", + "ejbLocalRef", + "serviceRef", + "resourceRef", + "resourceEnvRef", + "messageDestination", + "securityRealmName", + "authentication", + "security", + "serviceOrPersistence" +}) +public class WebApp + implements Serializable +{ + + private final static long serialVersionUID = 12343L; + @XmlElement(namespace = "http://geronimo.apache.org/xml/ns/deployment-1.2") + protected Environment environment; + @XmlElement(name = "context-root") + protected String contextRoot; + @XmlElement(name = "work-dir") + protected String workDir; + @XmlElement(name = "web-container", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2") + protected GbeanLocator webContainer; + @XmlElement(name = "container-config") + protected ContainerConfig containerConfig; + @XmlElementRef(name = "abstract-naming-entry", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2", type = JAXBElement.class) + protected List> abstractNamingEntry; + @XmlElement(name = "env-entry", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2") + protected List envEntry; + @XmlElement(name = "ejb-ref", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2") + protected List ejbRef; + @XmlElement(name = "ejb-local-ref", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2") + protected List ejbLocalRef; + @XmlElement(name = "service-ref", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2") + protected List serviceRef; + @XmlElement(name = "resource-ref", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2") + protected List resourceRef; + @XmlElement(name = "resource-env-ref", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2") + protected List resourceEnvRef; + @XmlElement(name = "message-destination", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2") + protected List messageDestination; + @XmlElement(name = "security-realm-name") + protected String securityRealmName; + protected Authentication authentication; + @XmlElementRef(name = "security", namespace = "http://geronimo.apache.org/xml/ns/j2ee/application-2.0", type = JAXBElement.class) + protected JAXBElement security; + @XmlElementRefs({ + @XmlElementRef(name = "service", namespace = "http://geronimo.apache.org/xml/ns/deployment-1.2", type = JAXBElement.class), + @XmlElementRef(name = "persistence", namespace = "http://java.sun.com/xml/ns/persistence", type = Persistence.class) + }) + protected List serviceOrPersistence; + + /** + * + * This is the first part of the URL used to access the web application. + * For example context-root of "Sample-App" will have URL of + * http://host:port/Sample-App" and a context-root of "/" would be make this the default web application to the server. + * + * If the web application is packaged as an EAR that can use application context + * in the "application.xml". This element is necessary unless you want context root to default to the WAR + * name. + * + * + * @return + * possible object is + * {@link Environment } + * + */ + public Environment getEnvironment() { + return environment; + } + + /** + * + * This is the first part of the URL used to access the web application. + * For example context-root of "Sample-App" will have URL of + * http://host:port/Sample-App" and a context-root of "/" would be make this the default web application to the server. + * + * If the web application is packaged as an EAR that can use application context + * in the "application.xml". This element is necessary unless you want context root to default to the WAR + * name. + * + * + * @param value + * allowed object is + * {@link Environment } + * + */ + public void setEnvironment(Environment value) { + this.environment = value; + } + + /** + * Gets the value of the contextRoot property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContextRoot() { + return contextRoot; + } + + /** + * Sets the value of the contextRoot property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContextRoot(String value) { + this.contextRoot = value; + } + + /** + * Gets the value of the workDir property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getWorkDir() { + return workDir; + } + + /** + * Sets the value of the workDir property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setWorkDir(String value) { + this.workDir = value; + } + + /** + * Gets the value of the webContainer property. + * + * @return + * possible object is + * {@link GbeanLocator } + * + */ + public GbeanLocator getWebContainer() { + return webContainer; + } + + /** + * Sets the value of the webContainer property. + * + * @param value + * allowed object is + * {@link GbeanLocator } + * + */ + public void setWebContainer(GbeanLocator value) { + this.webContainer = value; + } + + /** + * Gets the value of the containerConfig property. + * + * @return + * possible object is + * {@link ContainerConfig } + * + */ + public ContainerConfig getContainerConfig() { + return containerConfig; + } + + /** + * Sets the value of the containerConfig property. + * + * @param value + * allowed object is + * {@link ContainerConfig } + * + */ + public void setContainerConfig(ContainerConfig value) { + this.containerConfig = value; + } + + /** + * Gets the value of the abstractNamingEntry property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the abstractNamingEntry property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getAbstractNamingEntry().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link PersistenceUnitRef }{@code >} + * {@link JAXBElement }{@code <}{@link PersistenceContextRef }{@code >} + * {@link JAXBElement }{@code <}{@link GbeanRef }{@code >} + * {@link JAXBElement }{@code <}{@link AbstractNamingEntry }{@code >} + * + * + */ + public List> getAbstractNamingEntry() { + if (abstractNamingEntry == null) { + abstractNamingEntry = new ArrayList>(); + } + return this.abstractNamingEntry; + } + + /** + * Gets the value of the envEntry property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the envEntry property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getEnvEntry().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link EnvEntry } + * + * + */ + public List getEnvEntry() { + if (envEntry == null) { + envEntry = new ArrayList(); + } + return this.envEntry; + } + + /** + * Gets the value of the ejbRef property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the ejbRef property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getEjbRef().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link EjbRef } + * + * + */ + public List getEjbRef() { + if (ejbRef == null) { + ejbRef = new ArrayList(); + } + return this.ejbRef; + } + + /** + * Gets the value of the ejbLocalRef property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the ejbLocalRef property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getEjbLocalRef().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link EjbLocalRef } + * + * + */ + public List getEjbLocalRef() { + if (ejbLocalRef == null) { + ejbLocalRef = new ArrayList(); + } + return this.ejbLocalRef; + } + + /** + * Gets the value of the serviceRef property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the serviceRef property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getServiceRef().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ServiceRef } + * + * + */ + public List getServiceRef() { + if (serviceRef == null) { + serviceRef = new ArrayList(); + } + return this.serviceRef; + } + + /** + * Gets the value of the resourceRef property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the resourceRef property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getResourceRef().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ResourceRef } + * + * + */ + public List getResourceRef() { + if (resourceRef == null) { + resourceRef = new ArrayList(); + } + return this.resourceRef; + } + + /** + * Gets the value of the resourceEnvRef property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the resourceEnvRef property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getResourceEnvRef().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ResourceEnvRef } + * + * + */ + public List getResourceEnvRef() { + if (resourceEnvRef == null) { + resourceEnvRef = new ArrayList(); + } + return this.resourceEnvRef; + } + + /** + * Gets the value of the messageDestination property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the messageDestination property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getMessageDestination().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link MessageDestination } + * + * + */ + public List getMessageDestination() { + if (messageDestination == null) { + messageDestination = new ArrayList(); + } + return this.messageDestination; + } + + /** + * Gets the value of the securityRealmName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecurityRealmName() { + return securityRealmName; + } + + /** + * Sets the value of the securityRealmName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecurityRealmName(String value) { + this.securityRealmName = value; + } + + /** + * Gets the value of the authentication property. + * + * @return + * possible object is + * {@link Authentication } + * + */ + public Authentication getAuthentication() { + return authentication; + } + + /** + * Sets the value of the authentication property. + * + * @param value + * allowed object is + * {@link Authentication } + * + */ + public void setAuthentication(Authentication value) { + this.authentication = value; + } + + /** + * Gets the value of the security property. + * + * @return + * possible object is + * {@link JAXBElement }{@code <}{@link org.apache.geronimo.jee.subject_info.Security }{@code >} + * {@link JAXBElement }{@code <}{@link org.apache.geronimo.Security.ns.security_1.SecurityType }{@code >} + * {@link JAXBElement }{@code <}{@link org.apache.geronimo.jee.security.Security }{@code >} + * {@link JAXBElement }{@code <}{@link AbstractSecurity }{@code >} + * {@link JAXBElement }{@code <}{@link SecurityRef }{@code >} + * + */ + public JAXBElement getSecurity() { + return security; + } + + /** + * Sets the value of the security property. + * + * @param value + * allowed object is + * {@link JAXBElement }{@code <}{@link org.apache.geronimo.jee.subject_info.Security }{@code >} + * {@link JAXBElement }{@code <}{@link org.apache.geronimo.Security.ns.security_1.SecurityType }{@code >} + * {@link JAXBElement }{@code <}{@link org.apache.geronimo.jee.security.Security }{@code >} + * {@link JAXBElement }{@code <}{@link AbstractSecurity }{@code >} + * {@link JAXBElement }{@code <}{@link SecurityRef }{@code >} + * + */ + public void setSecurity(JAXBElement value) { + this.security = ((JAXBElement ) value); + } + + /** + * Gets the value of the serviceOrPersistence property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the serviceOrPersistence property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getServiceOrPersistence().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Persistence } + * {@link JAXBElement }{@code <}{@link AbstractService }{@code >} + * {@link JAXBElement }{@code <}{@link Gbean }{@code >} + * + * + */ + public List getServiceOrPersistence() { + if (serviceOrPersistence == null) { + serviceOrPersistence = new ArrayList(); + } + return this.serviceOrPersistence; + } + +} Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v30.jaxbmodel/src/main/java/org/apache/geronimo/jee/web/package-info.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v30.jaxbmodel/src/main/java/org/apache/geronimo/jee/web/package-info.java?rev=996601&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v30.jaxbmodel/src/main/java/org/apache/geronimo/jee/web/package-info.java (added) +++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v30.jaxbmodel/src/main/java/org/apache/geronimo/jee/web/package-info.java Mon Sep 13 16:59:20 2010 @@ -0,0 +1,19 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@javax.xml.bind.annotation.XmlSchema(namespace = "http://geronimo.apache.org/xml/ns/j2ee/web-2.0.1", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package org.apache.geronimo.jee.web; Modified: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v30.ui/META-INF/MANIFEST.MF URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v30.ui/META-INF/MANIFEST.MF?rev=996601&r1=996600&r2=996601&view=diff ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v30.ui/META-INF/MANIFEST.MF (original) +++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v30.ui/META-INF/MANIFEST.MF Mon Sep 13 16:59:20 2010 @@ -7,8 +7,6 @@ Bundle-Activator: org.apache.geronimo.st Bundle-Localization: plugin Require-Bundle: org.apache.geronimo.runtime.v30, - org.apache.geronimo.jee.v21.jaxbmodel, - org.apache.geronimo.jee.v22.jaxbmodel, org.apache.geronimo.st.v30.jaxbmodel, org.apache.geronimo.st.v30.core, org.apache.geronimo.st.ui,