[jboss-svn-commits] JBoss Common SVN: r2604 - jbossxb/trunk/src/test/java/org/jboss/javaee/metadata/spec.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Fri Oct 5 09:54:05 EDT 2007


Author: scott.stark at jboss.org
Date: 2007-10-05 09:54:05 -0400 (Fri, 05 Oct 2007)
New Revision: 2604

Added:
   jbossxb/trunk/src/test/java/org/jboss/javaee/metadata/spec/PortComponentRef.java
Log:
A port-component-ref type

Added: jbossxb/trunk/src/test/java/org/jboss/javaee/metadata/spec/PortComponentRef.java
===================================================================
--- jbossxb/trunk/src/test/java/org/jboss/javaee/metadata/spec/PortComponentRef.java	                        (rev 0)
+++ jbossxb/trunk/src/test/java/org/jboss/javaee/metadata/spec/PortComponentRef.java	2007-10-05 13:54:05 UTC (rev 2604)
@@ -0,0 +1,67 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2006, 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.javaee.metadata.spec;
+
+import javax.xml.bind.annotation.XmlType;
+
+import org.jboss.javaee.metadata.support.IdMetaDataImpl;
+
+/**
+ * A port-component-ref type
+ * 
+ * @author Scott.Stark at jboss.org
+ * @version $Revision$
+ */
+ at XmlType(name="port-component-refType")
+public class PortComponentRef extends IdMetaDataImpl
+{
+   private static final long serialVersionUID = 1;
+
+   private String serviceEndpointInterface;
+   private boolean enableMtom;
+   private String portComponentLink;
+
+   public boolean isEnableMtom()
+   {
+      return enableMtom;
+   }
+   public void setEnableMtom(boolean enableMtom)
+   {
+      this.enableMtom = enableMtom;
+   }
+   public String getPortComponentLink()
+   {
+      return portComponentLink;
+   }
+   public void setPortComponentLink(String portComponentLink)
+   {
+      this.portComponentLink = portComponentLink;
+   }
+   public String getServiceEndpointInterface()
+   {
+      return serviceEndpointInterface;
+   }
+   public void setServiceEndpointInterface(String serviceEndpointInterface)
+   {
+      this.serviceEndpointInterface = serviceEndpointInterface;
+   }
+}


Property changes on: jbossxb/trunk/src/test/java/org/jboss/javaee/metadata/spec/PortComponentRef.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + native




More information about the jboss-svn-commits mailing list