[jboss-cvs] JBossAS SVN: r65862 - projects/metadata/trunk/src/main/java/org/jboss/metadata.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Thu Oct 4 19:08:53 EDT 2007
Author: scott.stark at jboss.org
Date: 2007-10-04 19:08:53 -0400 (Thu, 04 Oct 2007)
New Revision: 65862
Added:
projects/metadata/trunk/src/main/java/org/jboss/metadata/WebserviceDescription.java
projects/metadata/trunk/src/main/java/org/jboss/metadata/Webservices.java
Modified:
projects/metadata/trunk/src/main/java/org/jboss/metadata/ApplicationMetaData.java
Log:
Add the Webservices accessor to the legacy ApplicationMetaData
Modified: projects/metadata/trunk/src/main/java/org/jboss/metadata/ApplicationMetaData.java
===================================================================
--- projects/metadata/trunk/src/main/java/org/jboss/metadata/ApplicationMetaData.java 2007-10-04 22:09:19 UTC (rev 65861)
+++ projects/metadata/trunk/src/main/java/org/jboss/metadata/ApplicationMetaData.java 2007-10-04 23:08:53 UTC (rev 65862)
@@ -266,6 +266,13 @@
return result;
}
+ public Webservices getWebservices()
+ {
+ WebservicesMetaData webservices = getDelegate().getWebservices();
+ if (webservices == null)
+ return null;
+ }
+
/**
* Get the Wsdl Publish locations
*
Added: projects/metadata/trunk/src/main/java/org/jboss/metadata/WebserviceDescription.java
===================================================================
--- projects/metadata/trunk/src/main/java/org/jboss/metadata/WebserviceDescription.java (rev 0)
+++ projects/metadata/trunk/src/main/java/org/jboss/metadata/WebserviceDescription.java 2007-10-04 23:08:53 UTC (rev 65862)
@@ -0,0 +1,61 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2007, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.metadata;
+
+import org.jboss.metadata.ejb.jboss.WebserviceDescriptionMetaData;
+
+//$Id: $
+
+/**
+* Represents the <webservice-description> element in jboss.xml and jboss-web.xml
+*
+* @author Thomas.Diesler at jboss.com
+*/
+public class WebserviceDescription
+{
+ private WebserviceDescriptionMetaData wdmd;
+
+ WebserviceDescription(WebserviceDescriptionMetaData wdmd)
+ {
+ this.wdmd = wdmd;
+ }
+
+ public String getConfigFile()
+ {
+ return wdmd.getConfigFile();
+ }
+
+ public String getConfigName()
+ {
+ return wdmd.getConfigName();
+ }
+
+ public String getDescriptionName()
+ {
+ return wdmd.getWebserviceDescriptionName();
+ }
+
+ public String getWsdlPublishLocation()
+ {
+ return wdmd.getWsdlPublishLocation();
+ }
+}
Property changes on: projects/metadata/trunk/src/main/java/org/jboss/metadata/WebserviceDescription.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ native
Added: projects/metadata/trunk/src/main/java/org/jboss/metadata/Webservices.java
===================================================================
--- projects/metadata/trunk/src/main/java/org/jboss/metadata/Webservices.java (rev 0)
+++ projects/metadata/trunk/src/main/java/org/jboss/metadata/Webservices.java 2007-10-04 23:08:53 UTC (rev 65862)
@@ -0,0 +1,66 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2007, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.metadata;
+
+//$Id: $
+
+import java.util.ArrayList;
+import java.util.Iterator;
+import java.util.List;
+
+import org.jboss.metadata.ejb.jboss.WebserviceDescriptionMetaData;
+import org.jboss.metadata.ejb.jboss.WebservicesMetaData;
+import org.jboss.metadata.ejb.jboss.WebserviceDescriptionsMetaData;
+
+/**
+* Represents the <webservices> element in jboss.xml and jboss-web.xml
+*
+* @author Thomas.Diesler at jboss.com
+*/
+public class Webservices
+{
+ private WebservicesMetaData wmd;
+
+ Webservices(WebservicesMetaData wmd)
+ {
+ this.wmd = wmd;
+ }
+
+ public String getContextRoot()
+ {
+ return wmd.getContextRoot();
+ }
+
+ public List<WebserviceDescription> getWebserviceDescriptions()
+ {
+ List<WebserviceDescription> tmp = new ArrayList<WebserviceDescription>();
+ WebserviceDescriptionsMetaData descriptions = wmd.getWebserviceDescriptions();
+ Iterator<WebserviceDescriptionMetaData> wdmdIter = descriptions.iterator();
+ while( wdmdIter.hasNext() )
+ {
+ WebserviceDescriptionMetaData wdmd = wdmdIter.next();
+ WebserviceDescription wd = new WebserviceDescription(wdmd);
+ tmp.add(wd);
+ }
+ return tmp;
+ }
+}
Property changes on: projects/metadata/trunk/src/main/java/org/jboss/metadata/Webservices.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ native
More information about the jboss-cvs-commits
mailing list