JBossWS SVN: r5844 - in stack/native/trunk/src/main/java/org/jboss/ws/metadata: accessor and 2 other directories.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-02-28 07:13:05 -0500 (Thu, 28 Feb 2008)
New Revision: 5844
Added:
stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/
stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/Accessor.java
stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactory.java
stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactoryCreator.java
stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessor.java
stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactory.java
stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactoryCreator.java
stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessor.java
stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactory.java
stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactoryCreator.java
stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessor.java
stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactory.java
stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactoryCreator.java
Removed:
stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessor.java
stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessor.java
stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessor.java
stack/native/trunk/src/main/java/org/jboss/ws/metadata/acessor/
stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/Accessor.java
stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/AccessorFactory.java
stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/AccessorFactoryCreator.java
Modified:
stack/native/trunk/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSMetaDataBuilder.java
stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/FaultMetaData.java
stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/ParameterMetaData.java
stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/WrappedParameter.java
Log:
[JBWS-1857] JAXBContext created for every wrapper type
Refactor accessor to use top level elements. No functional change.
Copied: stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor (from rev 5829, stack/native/trunk/src/main/java/org/jboss/ws/metadata/acessor)
Copied: stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/Accessor.java (from rev 5829, stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/Accessor.java)
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/Accessor.java (rev 0)
+++ stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/Accessor.java 2008-02-28 12:13:05 UTC (rev 5844)
@@ -0,0 +1,34 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * 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.ws.metadata.accessor;
+
+// $Id$
+
+/**
+ * @author <a href="jason.greene(a)jboss.com">Jason T. Greene</a>
+ */
+public interface Accessor
+{
+ public Object get(Object bean);
+
+ public void set(Object bean, Object value);
+}
\ No newline at end of file
Copied: stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactory.java (from rev 5829, stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/AccessorFactory.java)
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactory.java (rev 0)
+++ stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactory.java 2008-02-28 12:13:05 UTC (rev 5844)
@@ -0,0 +1,34 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * 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.ws.metadata.accessor;
+
+// $Id$
+
+import org.jboss.ws.metadata.umdm.WrappedParameter;
+
+/**
+ * @author <a href="jason.greene(a)jboss.com">Jason T. Greene</a>
+ */
+public interface AccessorFactory
+{
+ public Accessor create(WrappedParameter parameter);
+}
\ No newline at end of file
Copied: stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactoryCreator.java (from rev 5829, stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/AccessorFactoryCreator.java)
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactoryCreator.java (rev 0)
+++ stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactoryCreator.java 2008-02-28 12:13:05 UTC (rev 5844)
@@ -0,0 +1,38 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * 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.ws.metadata.accessor;
+
+//$Id$
+
+import org.jboss.ws.metadata.umdm.FaultMetaData;
+import org.jboss.ws.metadata.umdm.ParameterMetaData;
+
+/**
+ * @author <a href="jason.greene(a)jboss.com">Jason T. Greene</a>
+ * @version $Revision$
+ */
+public interface AccessorFactoryCreator
+{
+ public AccessorFactory create(ParameterMetaData parameter);
+
+ public AccessorFactory create(FaultMetaData fault);
+}
\ No newline at end of file
Deleted: stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessor.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/acessor/JAXBAccessor.java 2008-02-28 07:23:17 UTC (rev 5829)
+++ stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessor.java 2008-02-28 12:13:05 UTC (rev 5844)
@@ -1,129 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2005, JBoss Inc., and individual contributors as indicated
- * 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.ws.metadata.acessor;
-
-import javax.xml.bind.JAXBException;
-import javax.xml.namespace.QName;
-
-import org.jboss.ws.WSException;
-import org.jboss.ws.core.jaxws.JAXBContextFactory;
-import org.jboss.ws.metadata.umdm.Accessor;
-import org.jboss.ws.metadata.umdm.AccessorFactory;
-import org.jboss.ws.metadata.umdm.AccessorFactoryCreator;
-import org.jboss.ws.metadata.umdm.FaultMetaData;
-import org.jboss.ws.metadata.umdm.ParameterMetaData;
-import org.jboss.ws.metadata.umdm.WrappedParameter;
-
-import com.sun.xml.bind.api.AccessorException;
-import com.sun.xml.bind.api.JAXBRIContext;
-import com.sun.xml.bind.api.RawAccessor;
-
-/**
- * A JAXB object accessor.
- *
- * @author <a href="jason.greene(a)jboss.com">Jason T. Greene</a>
- * @version $Revision$
- */
-@SuppressWarnings("unchecked")
-public class JAXBAccessor implements Accessor
-{
- private RawAccessor accessor;
-
- public static AccessorFactoryCreator FACTORY_CREATOR = new AccessorFactoryCreator() {
-
- public AccessorFactory create(ParameterMetaData parameter)
- {
- return create(parameter.getJavaType());
- }
-
- public AccessorFactory create(FaultMetaData fault)
- {
- return create(fault.getFaultBean());
- }
-
- private AccessorFactory create(final Class clazz)
- {
- final JAXBRIContext ctx = (JAXBRIContext) JAXBContextFactory.newInstance().createContext(clazz);
-
- return new AccessorFactory()
- {
- public Accessor create(WrappedParameter parameter)
- {
- RawAccessor<Object, Object> accessor;
- try
- {
- QName name = parameter.getName();
- accessor = ctx.getElementPropertyAccessor(
- clazz,
- name.getNamespaceURI().intern(), // JAXB internally optimizes String usage towards intern()
- name.getLocalPart().intern() // see com.sun.xml.bind.v2.util.QNameMap;
- );
- }
- catch (Throwable t)
- {
- WSException ex = new WSException(t.getMessage());
- ex.setStackTrace(t.getStackTrace());
- throw ex;
- }
-
- if (accessor == null)
- throw new IllegalStateException("Could not obtain accessor for parameter: " + parameter);
-
- return new JAXBAccessor(accessor);
- }
- };
- }
- };
-
- private JAXBAccessor(RawAccessor accessor)
- {
- this.accessor = accessor;
- }
-
- public Object get(Object bean)
- {
- try
- {
- return accessor.get(bean);
- }
- catch (AccessorException a)
- {
- WSException ex = new WSException(a.getMessage());
- ex.setStackTrace(a.getStackTrace());
- throw ex;
- }
- }
-
- public void set(Object bean, Object value)
- {
- try
- {
- accessor.set(bean, value);
- }
- catch (AccessorException a)
- {
- WSException ex = new WSException(a.getMessage());
- ex.setStackTrace(a.getStackTrace());
- throw ex;
- }
- }
-}
\ No newline at end of file
Copied: stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessor.java (from rev 5842, stack/native/trunk/src/main/java/org/jboss/ws/metadata/acessor/JAXBAccessor.java)
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessor.java (rev 0)
+++ stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessor.java 2008-02-28 12:13:05 UTC (rev 5844)
@@ -0,0 +1,73 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * 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.ws.metadata.accessor;
+
+//$Id$
+
+import org.jboss.ws.WSException;
+
+import com.sun.xml.bind.api.AccessorException;
+import com.sun.xml.bind.api.RawAccessor;
+
+/**
+ * A JAXB object accessor.
+ *
+ * @author <a href="jason.greene(a)jboss.com">Jason T. Greene</a>
+ */
+@SuppressWarnings("unchecked")
+public class JAXBAccessor implements Accessor
+{
+ private RawAccessor accessor;
+
+ JAXBAccessor(RawAccessor accessor)
+ {
+ this.accessor = accessor;
+ }
+
+ public Object get(Object bean)
+ {
+ try
+ {
+ return accessor.get(bean);
+ }
+ catch (AccessorException a)
+ {
+ WSException ex = new WSException(a.getMessage());
+ ex.setStackTrace(a.getStackTrace());
+ throw ex;
+ }
+ }
+
+ public void set(Object bean, Object value)
+ {
+ try
+ {
+ accessor.set(bean, value);
+ }
+ catch (AccessorException a)
+ {
+ WSException ex = new WSException(a.getMessage());
+ ex.setStackTrace(a.getStackTrace());
+ throw ex;
+ }
+ }
+}
\ No newline at end of file
Added: stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactory.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactory.java (rev 0)
+++ stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactory.java 2008-02-28 12:13:05 UTC (rev 5844)
@@ -0,0 +1,69 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * 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.ws.metadata.accessor;
+
+//$Id$
+
+import javax.xml.namespace.QName;
+
+import org.jboss.ws.WSException;
+import org.jboss.ws.metadata.umdm.WrappedParameter;
+
+import com.sun.xml.bind.api.JAXBRIContext;
+import com.sun.xml.bind.api.RawAccessor;
+
+final class JAXBAccessorFactory implements AccessorFactory
+{
+ private final Class clazz;
+ private final JAXBRIContext ctx;
+
+ JAXBAccessorFactory(Class clazz, JAXBRIContext ctx)
+ {
+ this.clazz = clazz;
+ this.ctx = ctx;
+ }
+
+ public Accessor create(WrappedParameter parameter)
+ {
+ RawAccessor<Object, Object> accessor;
+ try
+ {
+ QName name = parameter.getName();
+ accessor = ctx.getElementPropertyAccessor(
+ clazz,
+ name.getNamespaceURI().intern(), // JAXB internally optimizes String usage towards intern()
+ name.getLocalPart().intern() // see com.sun.xml.bind.v2.util.QNameMap;
+ );
+ }
+ catch (Throwable t)
+ {
+ WSException ex = new WSException(t.getMessage());
+ ex.setStackTrace(t.getStackTrace());
+ throw ex;
+ }
+
+ if (accessor == null)
+ throw new IllegalStateException("Could not obtain accessor for parameter: " + parameter);
+
+ return new JAXBAccessor(accessor);
+ }
+}
\ No newline at end of file
Property changes on: stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactory.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactoryCreator.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactoryCreator.java (rev 0)
+++ stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactoryCreator.java 2008-02-28 12:13:05 UTC (rev 5844)
@@ -0,0 +1,47 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * 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.ws.metadata.accessor;
+
+//$Id$
+
+import org.jboss.ws.core.jaxws.JAXBContextFactory;
+import org.jboss.ws.metadata.umdm.FaultMetaData;
+import org.jboss.ws.metadata.umdm.ParameterMetaData;
+
+import com.sun.xml.bind.api.JAXBRIContext;
+
+public class JAXBAccessorFactoryCreator implements AccessorFactoryCreator
+{
+ public AccessorFactory create(ParameterMetaData parameter)
+ {
+ Class clazz = parameter.getJavaType();
+ JAXBRIContext ctx = (JAXBRIContext)JAXBContextFactory.newInstance().createContext(clazz);
+ return new JAXBAccessorFactory(clazz, ctx);
+ }
+
+ public AccessorFactory create(FaultMetaData fault)
+ {
+ Class clazz = fault.getFaultBean();
+ JAXBRIContext ctx = (JAXBRIContext)JAXBContextFactory.newInstance().createContext(clazz);
+ return new JAXBAccessorFactory(clazz, ctx);
+ }
+}
\ No newline at end of file
Property changes on: stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactoryCreator.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Deleted: stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessor.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/acessor/ReflectiveFieldAccessor.java 2008-02-28 07:23:17 UTC (rev 5829)
+++ stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessor.java 2008-02-28 12:13:05 UTC (rev 5844)
@@ -1,128 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2005, JBoss Inc., and individual contributors as indicated
- * 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.ws.metadata.acessor;
-
-import java.lang.reflect.Field;
-import java.lang.reflect.Modifier;
-
-import org.jboss.ws.WSException;
-import org.jboss.ws.metadata.umdm.Accessor;
-import org.jboss.ws.metadata.umdm.AccessorFactory;
-import org.jboss.ws.metadata.umdm.AccessorFactoryCreator;
-import org.jboss.ws.metadata.umdm.FaultMetaData;
-import org.jboss.ws.metadata.umdm.ParameterMetaData;
-import org.jboss.ws.metadata.umdm.WrappedParameter;
-
-/**
- * A simple Java field accessor that uses ordinary reflection.
- *
- * @author <a href="jason.greene(a)jboss.com">Jason T. Greene</a>
- * @version $Revision: 1760 $
- */
-@SuppressWarnings("unchecked")
-public class ReflectiveFieldAccessor implements Accessor
-{
- private Field field;
-
- public static AccessorFactoryCreator FACTORY_CREATOR = new AccessorFactoryCreator()
- {
- public AccessorFactory create(ParameterMetaData parameter)
- {
- return create(parameter.getJavaType());
- }
-
- public AccessorFactory create(FaultMetaData fault)
- {
- return create(fault.getFaultBean());
- }
-
- private AccessorFactory create(final Class clazz)
- {
- return new AccessorFactory()
- {
- public Accessor create(WrappedParameter parameter)
- {
- String fieldName = parameter.getVariable();
- try
- {
- Field field;
-
- try
- {
- field = clazz.getField(fieldName);
- }
- catch (NoSuchFieldException e)
- {
- // Search for a private field
- field = clazz.getDeclaredField(fieldName);
- field.setAccessible(true);
- }
-
- if (Modifier.isStatic(field.getModifiers()))
- throw new WSException("Field can not be static: " + fieldName);
-
- return new ReflectiveFieldAccessor(field);
- }
- catch (Throwable t)
- {
- WSException ex = new WSException("Error accessing field: " + fieldName + t.getClass().getSimpleName() + ": " + t.getMessage());
- ex.setStackTrace(t.getStackTrace());
- throw ex;
- }
- }
- };
- }
- };
-
- private ReflectiveFieldAccessor(Field field)
- {
- this.field = field;
- }
-
- public Object get(Object bean)
- {
- try
- {
- return field.get(bean);
- }
- catch (Throwable e)
- {
- WSException ex = new WSException(e.getMessage());
- ex.setStackTrace(ex.getStackTrace());
- throw ex;
- }
- }
-
- public void set(Object bean, Object value)
- {
- try
- {
- field.set(bean, value);
- }
- catch (Throwable e)
- {
- WSException ex = new WSException(e.getMessage());
- ex.setStackTrace(ex.getStackTrace());
- throw ex;
- }
- }
-}
\ No newline at end of file
Copied: stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessor.java (from rev 5842, stack/native/trunk/src/main/java/org/jboss/ws/metadata/acessor/ReflectiveFieldAccessor.java)
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessor.java (rev 0)
+++ stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessor.java 2008-02-28 12:13:05 UTC (rev 5844)
@@ -0,0 +1,75 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * 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.ws.metadata.accessor;
+
+//$Id: $
+
+import java.lang.reflect.Field;
+
+import org.jboss.ws.WSException;
+
+/**
+ * A simple Java field accessor that uses ordinary reflection.
+ *
+ * @author <a href="jason.greene(a)jboss.com">Jason T. Greene</a>
+ * @version $Revision: 1760 $
+ */
+@SuppressWarnings("unchecked")
+public class ReflectiveFieldAccessor implements Accessor
+{
+ private Field field;
+
+ public static AccessorFactoryCreator FACTORY_CREATOR = new ReflectiveFieldAccessorFactoryCreator();
+
+ ReflectiveFieldAccessor(Field field)
+ {
+ this.field = field;
+ }
+
+ public Object get(Object bean)
+ {
+ try
+ {
+ return field.get(bean);
+ }
+ catch (Throwable e)
+ {
+ WSException ex = new WSException(e.getMessage());
+ ex.setStackTrace(ex.getStackTrace());
+ throw ex;
+ }
+ }
+
+ public void set(Object bean, Object value)
+ {
+ try
+ {
+ field.set(bean, value);
+ }
+ catch (Throwable e)
+ {
+ WSException ex = new WSException(e.getMessage());
+ ex.setStackTrace(ex.getStackTrace());
+ throw ex;
+ }
+ }
+}
\ No newline at end of file
Added: stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactory.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactory.java (rev 0)
+++ stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactory.java 2008-02-28 12:13:05 UTC (rev 5844)
@@ -0,0 +1,71 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * 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.ws.metadata.accessor;
+
+//$Id$
+
+import java.lang.reflect.Field;
+import java.lang.reflect.Modifier;
+
+import org.jboss.ws.WSException;
+import org.jboss.ws.metadata.umdm.WrappedParameter;
+
+final class ReflectiveFieldAccessorFactory implements AccessorFactory
+{
+ private final Class clazz;
+
+ ReflectiveFieldAccessorFactory(Class clazz)
+ {
+ this.clazz = clazz;
+ }
+
+ public Accessor create(WrappedParameter parameter)
+ {
+ String fieldName = parameter.getVariable();
+ try
+ {
+ Field field;
+
+ try
+ {
+ field = clazz.getField(fieldName);
+ }
+ catch (NoSuchFieldException e)
+ {
+ // Search for a private field
+ field = clazz.getDeclaredField(fieldName);
+ field.setAccessible(true);
+ }
+
+ if (Modifier.isStatic(field.getModifiers()))
+ throw new WSException("Field can not be static: " + fieldName);
+
+ return new ReflectiveFieldAccessor(field);
+ }
+ catch (Throwable t)
+ {
+ WSException ex = new WSException("Error accessing field: " + fieldName + t.getClass().getSimpleName() + ": " + t.getMessage());
+ ex.setStackTrace(t.getStackTrace());
+ throw ex;
+ }
+ }
+}
\ No newline at end of file
Property changes on: stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactory.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactoryCreator.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactoryCreator.java (rev 0)
+++ stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactoryCreator.java 2008-02-28 12:13:05 UTC (rev 5844)
@@ -0,0 +1,40 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * 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.ws.metadata.accessor;
+
+//$Id$
+
+import org.jboss.ws.metadata.umdm.FaultMetaData;
+import org.jboss.ws.metadata.umdm.ParameterMetaData;
+
+public class ReflectiveFieldAccessorFactoryCreator implements AccessorFactoryCreator
+{
+ public AccessorFactory create(ParameterMetaData parameter)
+ {
+ return new ReflectiveFieldAccessorFactory(parameter.getJavaType());
+ }
+
+ public AccessorFactory create(FaultMetaData fault)
+ {
+ return new ReflectiveFieldAccessorFactory(fault.getFaultBean());
+ }
+}
\ No newline at end of file
Property changes on: stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactoryCreator.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Deleted: stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessor.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/acessor/ReflectiveMethodAccessor.java 2008-02-28 07:23:17 UTC (rev 5829)
+++ stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessor.java 2008-02-28 12:13:05 UTC (rev 5844)
@@ -1,114 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2005, JBoss Inc., and individual contributors as indicated
- * 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.ws.metadata.acessor;
-
-import java.beans.PropertyDescriptor;
-import java.lang.reflect.Method;
-
-import org.jboss.ws.WSException;
-import org.jboss.ws.metadata.umdm.Accessor;
-import org.jboss.ws.metadata.umdm.AccessorFactory;
-import org.jboss.ws.metadata.umdm.AccessorFactoryCreator;
-import org.jboss.ws.metadata.umdm.FaultMetaData;
-import org.jboss.ws.metadata.umdm.ParameterMetaData;
-import org.jboss.ws.metadata.umdm.WrappedParameter;
-
-/**
- * A simple JavaBean accessor that uses ordinary reflection.
- *
- * @author <a href="jason.greene(a)jboss.com">Jason T. Greene</a>
- * @version $Revision$
- */
-@SuppressWarnings("unchecked")
-public class ReflectiveMethodAccessor implements Accessor
-{
- private Method getter;
- private Method setter;
-
- public static AccessorFactoryCreator FACTORY_CREATOR = new AccessorFactoryCreator()
- {
- public AccessorFactory create(ParameterMetaData parameter)
- {
- return create(parameter.getJavaType());
- }
-
- public AccessorFactory create(FaultMetaData fault)
- {
- return create(fault.getFaultBean());
- }
-
- private AccessorFactory create(final Class clazz)
- {
- return new AccessorFactory()
- {
- public Accessor create(WrappedParameter parameter)
- {
- try
- {
- PropertyDescriptor pd = new PropertyDescriptor(parameter.getVariable(), clazz);
- return new ReflectiveMethodAccessor(pd.getReadMethod(), pd.getWriteMethod());
- }
- catch (Throwable t)
- {
- WSException ex = new WSException(t.getMessage());
- ex.setStackTrace(t.getStackTrace());
- throw ex;
- }
- }
- };
- }
- };
-
- private ReflectiveMethodAccessor(Method getter, Method setter)
- {
- this.getter = getter;
- this.setter = setter;
- }
-
- public Object get(Object bean)
- {
- try
- {
- return getter.invoke(bean);
- }
- catch (Throwable e)
- {
- WSException ex = new WSException(e.getMessage());
- ex.setStackTrace(ex.getStackTrace());
- throw ex;
- }
- }
-
- public void set(Object bean, Object value)
- {
- try
- {
- setter.invoke(bean, value);
- }
- catch (Throwable e)
- {
- WSException ex = new WSException(e.getMessage());
- ex.setStackTrace(ex.getStackTrace());
- throw ex;
- }
- }
-}
\ No newline at end of file
Copied: stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessor.java (from rev 5842, stack/native/trunk/src/main/java/org/jboss/ws/metadata/acessor/ReflectiveMethodAccessor.java)
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessor.java (rev 0)
+++ stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessor.java 2008-02-28 12:13:05 UTC (rev 5844)
@@ -0,0 +1,75 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * 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.ws.metadata.accessor;
+
+//$Id$
+
+import java.lang.reflect.Method;
+
+import org.jboss.ws.WSException;
+
+/**
+ * A simple JavaBean accessor that uses ordinary reflection.
+ *
+ * @author <a href="jason.greene(a)jboss.com">Jason T. Greene</a>
+ * @version $Revision$
+ */
+@SuppressWarnings("unchecked")
+public class ReflectiveMethodAccessor implements Accessor
+{
+ private Method getter;
+ private Method setter;
+
+ ReflectiveMethodAccessor(Method getter, Method setter)
+ {
+ this.getter = getter;
+ this.setter = setter;
+ }
+
+ public Object get(Object bean)
+ {
+ try
+ {
+ return getter.invoke(bean);
+ }
+ catch (Throwable e)
+ {
+ WSException ex = new WSException(e.getMessage());
+ ex.setStackTrace(ex.getStackTrace());
+ throw ex;
+ }
+ }
+
+ public void set(Object bean, Object value)
+ {
+ try
+ {
+ setter.invoke(bean, value);
+ }
+ catch (Throwable e)
+ {
+ WSException ex = new WSException(e.getMessage());
+ ex.setStackTrace(ex.getStackTrace());
+ throw ex;
+ }
+ }
+}
\ No newline at end of file
Added: stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactory.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactory.java (rev 0)
+++ stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactory.java 2008-02-28 12:13:05 UTC (rev 5844)
@@ -0,0 +1,54 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * 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.ws.metadata.accessor;
+
+//$Id$
+
+import java.beans.PropertyDescriptor;
+
+import org.jboss.ws.WSException;
+import org.jboss.ws.metadata.umdm.WrappedParameter;
+
+final class ReflectiveMethodAccessorFactory implements AccessorFactory
+{
+ private final Class clazz;
+
+ ReflectiveMethodAccessorFactory(Class clazz)
+ {
+ this.clazz = clazz;
+ }
+
+ public Accessor create(WrappedParameter parameter)
+ {
+ try
+ {
+ PropertyDescriptor pd = new PropertyDescriptor(parameter.getVariable(), clazz);
+ return new ReflectiveMethodAccessor(pd.getReadMethod(), pd.getWriteMethod());
+ }
+ catch (Throwable t)
+ {
+ WSException ex = new WSException(t.getMessage());
+ ex.setStackTrace(t.getStackTrace());
+ throw ex;
+ }
+ }
+}
\ No newline at end of file
Property changes on: stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactory.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactoryCreator.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactoryCreator.java (rev 0)
+++ stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactoryCreator.java 2008-02-28 12:13:05 UTC (rev 5844)
@@ -0,0 +1,38 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * 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.ws.metadata.accessor;
+
+import org.jboss.ws.metadata.umdm.FaultMetaData;
+import org.jboss.ws.metadata.umdm.ParameterMetaData;
+
+public class ReflectiveMethodAccessorFactoryCreator implements AccessorFactoryCreator
+{
+ public AccessorFactory create(ParameterMetaData parameter)
+ {
+ return new ReflectiveMethodAccessorFactory(parameter.getJavaType());
+ }
+
+ public AccessorFactory create(FaultMetaData fault)
+ {
+ return new ReflectiveMethodAccessorFactory(fault.getFaultBean());
+ }
+}
\ No newline at end of file
Property changes on: stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactoryCreator.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Modified: stack/native/trunk/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSMetaDataBuilder.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSMetaDataBuilder.java 2008-02-28 12:12:06 UTC (rev 5843)
+++ stack/native/trunk/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSMetaDataBuilder.java 2008-02-28 12:13:05 UTC (rev 5844)
@@ -70,7 +70,8 @@
import org.jboss.ws.extensions.addressing.metadata.AddressingOpMetaExt;
import org.jboss.ws.extensions.xop.jaxws.AttachmentScanResult;
import org.jboss.ws.extensions.xop.jaxws.ReflectiveAttachmentRefScanner;
-import org.jboss.ws.metadata.acessor.JAXBAccessor;
+import org.jboss.ws.metadata.accessor.JAXBAccessor;
+import org.jboss.ws.metadata.accessor.JAXBAccessorFactoryCreator;
import org.jboss.ws.metadata.builder.MetaDataBuilder;
import org.jboss.ws.metadata.umdm.EndpointMetaData;
import org.jboss.ws.metadata.umdm.FaultMetaData;
@@ -377,7 +378,7 @@
// JAX-WS p.37 pg.1, the annotation only affects the element name, not the type name
ParameterMetaData wrapperParameter = new ParameterMetaData(operation, xmlName, xmlType, requestWrapperType);
- wrapperParameter.setAccessorFactoryCreator(JAXBAccessor.FACTORY_CREATOR);
+ wrapperParameter.setAccessorFactoryCreator(new JAXBAccessorFactoryCreator());
operation.addParameter(wrapperParameter);
return wrapperParameter;
@@ -409,7 +410,7 @@
}
ParameterMetaData retMetaData = new ParameterMetaData(operation, xmlName, xmlType, responseWrapperType);
- retMetaData.setAccessorFactoryCreator(JAXBAccessor.FACTORY_CREATOR);
+ retMetaData.setAccessorFactoryCreator(new JAXBAccessorFactoryCreator());
operation.setReturnParameter(retMetaData);
return retMetaData;
Deleted: stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/Accessor.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/Accessor.java 2008-02-28 12:12:06 UTC (rev 5843)
+++ stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/Accessor.java 2008-02-28 12:13:05 UTC (rev 5844)
@@ -1,26 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2005, JBoss Inc., and individual contributors as indicated
- * by the @authors tag.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the JBPM BPEL PUBLIC LICENSE AGREEMENT as
- * published by JBoss Inc.; either version 1.0 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.
- */
-package org.jboss.ws.metadata.umdm;
-
-/**
- * @author <a href="jason.greene(a)jboss.com">Jason T. Greene</a>
- * @version $Revision$
- */
-public interface Accessor
-{
- public Object get(Object bean);
-
- public void set(Object bean, Object value);
-}
\ No newline at end of file
Deleted: stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/AccessorFactory.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/AccessorFactory.java 2008-02-28 12:12:06 UTC (rev 5843)
+++ stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/AccessorFactory.java 2008-02-28 12:13:05 UTC (rev 5844)
@@ -1,24 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2005, JBoss Inc., and individual contributors as indicated
- * by the @authors tag.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the JBPM BPEL PUBLIC LICENSE AGREEMENT as
- * published by JBoss Inc.; either version 1.0 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.
- */
-package org.jboss.ws.metadata.umdm;
-
-/**
- * @author <a href="jason.greene(a)jboss.com">Jason T. Greene</a>
- * @version $Revision$
- */
-public interface AccessorFactory
-{
- public Accessor create(WrappedParameter parameter);
-}
\ No newline at end of file
Deleted: stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/AccessorFactoryCreator.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/AccessorFactoryCreator.java 2008-02-28 12:12:06 UTC (rev 5843)
+++ stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/AccessorFactoryCreator.java 2008-02-28 12:13:05 UTC (rev 5844)
@@ -1,26 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2005, JBoss Inc., and individual contributors as indicated
- * by the @authors tag.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the JBPM BPEL PUBLIC LICENSE AGREEMENT as
- * published by JBoss Inc.; either version 1.0 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.
- */
-package org.jboss.ws.metadata.umdm;
-
-/**
- * @author <a href="jason.greene(a)jboss.com">Jason T. Greene</a>
- * @version $Revision$
- */
-public interface AccessorFactoryCreator
-{
- public AccessorFactory create(ParameterMetaData parameter);
-
- public AccessorFactory create(FaultMetaData fault);
-}
\ No newline at end of file
Modified: stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/FaultMetaData.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/FaultMetaData.java 2008-02-28 12:12:06 UTC (rev 5843)
+++ stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/FaultMetaData.java 2008-02-28 12:13:05 UTC (rev 5844)
@@ -39,8 +39,9 @@
import org.jboss.logging.Logger;
import org.jboss.ws.WSException;
import org.jboss.ws.core.jaxws.DynamicWrapperGenerator;
-import org.jboss.ws.metadata.acessor.ReflectiveFieldAccessor;
-import org.jboss.ws.metadata.acessor.ReflectiveMethodAccessor;
+import org.jboss.ws.metadata.accessor.AccessorFactory;
+import org.jboss.ws.metadata.accessor.ReflectiveFieldAccessorFactoryCreator;
+import org.jboss.ws.metadata.accessor.ReflectiveMethodAccessorFactoryCreator;
import org.jboss.ws.metadata.umdm.EndpointMetaData.Type;
import org.jboss.wsf.common.JavaUtils;
@@ -317,9 +318,9 @@
// However, if issues arrise then switch this to a full jaxb reflection library
XmlAccessorType type = (XmlAccessorType)faultBean.getAnnotation(XmlAccessorType.class);
if (type != null && type.value() == XmlAccessType.FIELD)
- return ReflectiveFieldAccessor.FACTORY_CREATOR.create(this);
+ return new ReflectiveFieldAccessorFactoryCreator().create(this);
- return ReflectiveMethodAccessor.FACTORY_CREATOR.create(this);
+ return new ReflectiveMethodAccessorFactoryCreator().create(this);
}
public Object toFaultBean(Exception serviceException)
Modified: stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/ParameterMetaData.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/ParameterMetaData.java 2008-02-28 12:12:06 UTC (rev 5843)
+++ stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/ParameterMetaData.java 2008-02-28 12:13:05 UTC (rev 5844)
@@ -41,7 +41,9 @@
import org.jboss.ws.core.utils.HolderUtils;
import org.jboss.ws.extensions.xop.jaxws.AttachmentScanResult;
import org.jboss.ws.extensions.xop.jaxws.ReflectiveAttachmentRefScanner;
-import org.jboss.ws.metadata.acessor.ReflectiveMethodAccessor;
+import org.jboss.ws.metadata.accessor.AccessorFactory;
+import org.jboss.ws.metadata.accessor.AccessorFactoryCreator;
+import org.jboss.ws.metadata.accessor.ReflectiveMethodAccessorFactoryCreator;
import org.jboss.ws.metadata.config.EndpointFeature;
import org.jboss.ws.metadata.umdm.EndpointMetaData.Type;
import org.jboss.wsf.common.JavaUtils;
@@ -78,7 +80,7 @@
// SOAP-ENC:Array
private boolean soapArrayParam;
private QName soapArrayCompType;
- private AccessorFactoryCreator accessorFactoryCreator = ReflectiveMethodAccessor.FACTORY_CREATOR;
+ private AccessorFactoryCreator accessorFactoryCreator = new ReflectiveMethodAccessorFactoryCreator();
private static final List<String> messageTypes = new ArrayList<String>();
static
Modified: stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/WrappedParameter.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/WrappedParameter.java 2008-02-28 12:12:06 UTC (rev 5843)
+++ stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/WrappedParameter.java 2008-02-28 12:13:05 UTC (rev 5844)
@@ -21,15 +21,17 @@
*/
package org.jboss.ws.metadata.umdm;
+// $Id$
+
import javax.xml.namespace.QName;
+import org.jboss.ws.metadata.accessor.Accessor;
import org.jboss.wsf.common.JavaUtils;
/**
* WrappedParameter represents a document/literal wrapped parameter.
*
* @author <a href="jason.greene(a)jboss.com">Jason T. Greene</a>
- * @version $Revision$
*/
public class WrappedParameter
{
16 years, 10 months
JBossWS SVN: r5843 - stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-02-28 07:12:06 -0500 (Thu, 28 Feb 2008)
New Revision: 5843
Modified:
stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server/RMServerSequence.java
Log:
Fix invalid import
Modified: stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server/RMServerSequence.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server/RMServerSequence.java 2008-02-28 11:45:18 UTC (rev 5842)
+++ stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server/RMServerSequence.java 2008-02-28 12:12:06 UTC (rev 5843)
@@ -21,25 +21,23 @@
*/
package org.jboss.ws.extensions.wsrm.server;
+import java.io.ByteArrayOutputStream;
import java.io.File;
-import java.io.IOException;
import java.io.FileInputStream;
+import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
-import java.io.ByteArrayOutputStream;
-
import java.util.HashMap;
+import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import java.util.TreeSet;
-import java.util.Iterator;
import org.jboss.logging.Logger;
import org.jboss.ws.extensions.addressing.AddressingClientUtil;
import org.jboss.ws.extensions.wsrm.RMFault;
import org.jboss.ws.extensions.wsrm.RMFaultCode;
import org.jboss.ws.extensions.wsrm.RMFaultConstant;
-import org.jboss.ws.extensions.wsrm.RMFaultConstants;
import org.jboss.ws.extensions.wsrm.RMSequence;
/**
16 years, 10 months
JBossWS SVN: r5842 - stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-02-28 06:45:18 -0500 (Thu, 28 Feb 2008)
New Revision: 5842
Modified:
stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server/RMInvocationHandler.java
stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server/RMServerSequence.java
Log:
message number rollover results in sequence termination
Modified: stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server/RMInvocationHandler.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server/RMInvocationHandler.java 2008-02-28 11:38:08 UTC (rev 5841)
+++ stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server/RMInvocationHandler.java 2008-02-28 11:45:18 UTC (rev 5842)
@@ -35,7 +35,6 @@
import javax.xml.ws.addressing.Relationship;
import org.jboss.logging.Logger;
-import org.jboss.util.NotImplementedException;
import org.jboss.ws.core.CommonMessageContext;
import org.jboss.ws.core.soap.MessageContextAssociation;
import org.jboss.ws.extensions.wsrm.RMAddressingConstants;
@@ -213,7 +212,6 @@
RMTerminateSequence payload = (RMTerminateSequence)data.get(rmConstants.getTerminateSequenceQName());
String seqIdentifier = payload.getIdentifier();
sequence = RMStore.deserialize(dataDir, seqIdentifier, true);
- //sequence = RMHelper.getServerSequenceByInboundId(seqIdentifier, sequences);
if (sequence == null)
{
throw getUnknownSequenceFault(seqIdentifier);
@@ -240,14 +238,19 @@
RMSequence payload = (RMSequence)data.get(rmConstants.getSequenceQName());
String seqIdentifier = payload.getIdentifier();
sequence = RMStore.deserialize(dataDir, seqIdentifier, true);
- //sequence = RMHelper.getServerSequenceByInboundId(seqIdentifier, sequences);
if (sequence == null)
{
throw getUnknownSequenceFault(seqIdentifier);
}
- sequence.addReceivedInboundMessage(payload.getMessageNumber());
- RMStore.serialize(dataDir, sequence);
+ try
+ {
+ sequence.addReceivedInboundMessage(payload.getMessageNumber());
+ }
+ finally
+ {
+ RMStore.serialize(dataDir, sequence);
+ }
protocolMessages.add(rmConstants.getSequenceAcknowledgementQName());
rmResponseContext.put(RMConstant.SEQUENCE_REFERENCE, sequence);
Modified: stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server/RMServerSequence.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server/RMServerSequence.java 2008-02-28 11:38:08 UTC (rev 5841)
+++ stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server/RMServerSequence.java 2008-02-28 11:45:18 UTC (rev 5842)
@@ -146,6 +146,7 @@
Map<String, Object> detailsMap = new HashMap<String, Object>(3);
detailsMap.put(RMFaultConstant.IDENTIFIER, this.inboundId);
detailsMap.put(RMFaultConstant.MAX_MESSAGE_NUMBER, this.messageNumber);
+ this.terminate();
throw new RMFault(RMFaultCode.MESSAGE_NUMBER_ROLLOVER, detailsMap);
}
16 years, 10 months
JBossWS SVN: r5841 - in stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm: server and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-02-28 06:38:08 -0500 (Thu, 28 Feb 2008)
New Revision: 5841
Added:
stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/RMFault.java
stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/RMFaultCode.java
stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/RMFaultConstant.java
Modified:
stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server/RMInvocationHandler.java
stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server/RMServerSequence.java
stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server/RMStore.java
Log:
throw RMFaults instead of runtime TODO exceptions
Added: stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/RMFault.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/RMFault.java (rev 0)
+++ stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/RMFault.java 2008-02-28 11:38:08 UTC (rev 5841)
@@ -0,0 +1,82 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * 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.ws.extensions.wsrm;
+
+import java.util.Collections;
+import java.util.Map;
+
+import javax.xml.ws.WebServiceException;
+
+/**
+ * RM fault
+ *
+ * @author richard.opalka(a)jboss.com
+ *
+ * @see org.jboss.ws.extensions.wsrm.RMFaultCode
+ * @see org.jboss.ws.extensions.wsrm.RMFaultConstant
+ */
+public class RMFault extends WebServiceException
+{
+
+ private final RMFaultCode faultCode;
+ private final Map<String, Object> details;
+
+ /**
+ * Constructor
+ * @param faultCode reason
+ */
+ public RMFault(RMFaultCode faultCode)
+ {
+ this(faultCode, Collections.EMPTY_MAP);
+ }
+
+ /**
+ * Constructor
+ * @param faultCode reason
+ * @param details to be de/serialized
+ */
+ public RMFault(RMFaultCode faultCode, Map<String, Object> details)
+ {
+ super();
+ this.faultCode = faultCode;
+ this.details = details;
+ }
+
+ /**
+ * Gets fault code
+ * @return fault code
+ */
+ public final RMFaultCode getFaultCode()
+ {
+ return this.faultCode;
+ }
+
+ /**
+ * Gets details
+ * @return details
+ */
+ public final Map<String, Object> getDetails()
+ {
+ return this.details;
+ }
+
+}
Property changes on: stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/RMFault.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/RMFaultCode.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/RMFaultCode.java (rev 0)
+++ stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/RMFaultCode.java 2008-02-28 11:38:08 UTC (rev 5841)
@@ -0,0 +1,195 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * 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.ws.extensions.wsrm;
+
+/**
+ * RM fault constants
+ *
+ * @author richard.opalka(a)jboss.com
+ *
+ * @see org.jboss.ws.extensions.wsrm.RMFault
+ * @see org.jboss.ws.extensions.wsrm.RMFaultConstant
+ */
+public final class RMFaultCode
+{
+
+ private final String subcode;
+ private final String reason;
+
+ /**
+ * Encountering an unrecoverable condition or detection of violation of the protocol.
+ * <p>
+ * <table>
+ * <tr><td>[Code]</td><td>Sender or Receiver</td></tr>
+ * <tr><td>[Subcode]</td><td>wsrm:SequenceTerminated</td></tr>
+ * <tr><td>[Reason]</td><td>The Sequence has been terminated due to an unrecoverable error.</td></tr>
+ * <tr><td>[Detail]</td><td><wsrm:Identifier...> xs:anyURI </wsrm:Identifier></td></tr>
+ * </table>
+ * </p>
+ */
+ public static final RMFaultCode SEQUENCE_TERMINATED = new RMFaultCode(
+ "SequenceTerminated",
+ "The Sequence has been terminated due to an unrecoverable error."
+ );
+
+ /**
+ * Response to a message containing an
+ * unknown or terminated Sequence identifier.
+ * <p>
+ * <table>
+ * <tr><td>[Code]</td><td>Sender</td></tr>
+ * <tr><td>[Subcode]</td><td>wsrm:UnknownSequence</td></tr>
+ * <tr><td>[Reason]</td><td>The value of wsrm:Identifier is not a known Sequence identifier.</td></tr>
+ * <tr><td>[Detail]</td><td><wsrm:Identifier...> xs:anyURI </wsrm:Identifier></td></tr>
+ * </table>
+ * </p>
+ */
+ public static final RMFaultCode UNKNOWN_SEQUENCE = new RMFaultCode(
+ "UnknownSequence",
+ "The value of wsrm:Identifier is not a known Sequence identifier."
+ );
+
+ /**
+ * An example of when this fault is generated is when a message
+ * is Received by the RM Source containing a SequenceAcknowledgement
+ * covering messages that have not been sent.
+ * <p>
+ * <table>
+ * <tr><td>[Code]</td><td>Sender</td></tr>
+ * <tr><td>[Subcode]</td><td>wsrm:InvalidAcknowledgement</td></tr>
+ * <tr><td>[Reason]</td><td>The SequenceAcknowledgement violates the cumulative Acknowledgement invariant.</td></tr>
+ * <tr><td>[Detail]</td><td><wsrm:SequenceAcknowledgement ...> ... </wsrm:SequenceAcknowledgement></td></tr>
+ * </table>
+ * </p>
+ */
+ public static final RMFaultCode INVALID_ACKNOWLEDGEMENT = new RMFaultCode(
+ "InvalidAcknowledgement",
+ "The SequenceAcknowledgement violates the cumulative Acknowledgement invariant."
+ );
+
+ /**
+ * Message number in /wsrm:Sequence/wsrm:MessageNumber of a Received
+ * message exceeds the internal limitations of an RM Destination
+ * <p>
+ * <table>
+ * <tr><td>[Code]</td><td>Sender</td></tr>
+ * <tr><td>[Subcode]</td><td>wsrm:MessageNumberRollover</td></tr>
+ * <tr><td>[Reason]</td><td>The maximum value for wsrm:MessageNumber has been exceeded.</td></tr>
+ * <tr><td>[Detail]</td><td>
+ * <table>
+ * <tr><td><wsrm:Identifier ...> xs:anyURI </wsrm:Identifier></td></tr>
+ * <tr><td><wsrm:MaxMessageNumber> wsrm:MessageNumberType </wsrm:MaxMessageNumber></td></tr>
+ * </table>
+ * </td></tr></table>
+ * </p>
+ */
+ public static final RMFaultCode MESSAGE_NUMBER_ROLLOVER = new RMFaultCode(
+ "MessageNumberRollover",
+ "The maximum value for wsrm:MessageNumber has been exceeded."
+ );
+
+ /**
+ * In response to a CreateSequence message when the RM
+ * Destination does not wish to create a new Sequence.
+ * <p>
+ * <table>
+ * <tr><td>[Code]</td><td>Sender or Receiver</td></tr>
+ * <tr><td>[Subcode]</td><td>wsrm:CreateSequenceRefused</td></tr>
+ * <tr><td>[Reason]</td><td>The Create Sequence request has been refused by the RM Destination.</td></tr>
+ * <tr><td>[Detail]</td><td>xs:any</td></tr>
+ * </table>
+ * </p>
+ */
+ public static final RMFaultCode CREATE_SEQUENCE_REFUSED = new RMFaultCode(
+ "CreateSequenceRefused",
+ "The Create Sequence request has been refused by the RM Destination."
+ );
+
+ /**
+ * This fault is generated by an RM Destination to indicate
+ * that the specified Sequence has been closed.
+ * This fault MUST be generated when an RM Destination is asked
+ * to accept a message for a Sequence that is closed.
+ * <p>
+ * <table>
+ * <tr><td>[Code]</td><td>Sender</td></tr>
+ * <tr><td>[Subcode]</td><td>wsrm:SequenceClosed</td></tr>
+ * <tr><td>[Reason]</td><td>The Sequence is closed and cannot accept new messages.</td></tr>
+ * <tr><td>[Detail]</td><td><wsrm:Identifier...> xs:anyURI </wsrm:Identifier></td></tr>
+ * </table>
+ * </p>
+ */
+ public static final RMFaultCode SEQUENCE_CLOSED = new RMFaultCode(
+ "SequenceClosed",
+ "The Sequence is closed and cannot accept new messages."
+ );
+
+ /**
+ * If an RM Destination requires the use of WS-RM,
+ * this fault is generated when it Receives an incoming
+ * message that did not use this protocol.
+ *
+ * <p>
+ * <table>
+ * <tr><td>[Code]</td><td>Sender</td></tr>
+ * <tr><td>[Subcode]</td><td>wsrm:WSRMRequired</td></tr>
+ * <tr><td>[Reason]</td><td>The RM Destination requires the use of WSRM</td></tr>
+ * <tr><td>[Detail]</td><td>xs:any</td></tr>
+ * </table>
+ * </p>
+ */
+ public static final RMFaultCode WSRM_REQUIRED = new RMFaultCode(
+ "WSRMRequired",
+ "The RM Destination requires the use of WSRM"
+ );
+
+ /**
+ * Hidden constructor
+ * @param subcode the subcode
+ * @param reason message
+ */
+ private RMFaultCode(String subcode, String reason)
+ {
+ super();
+ this.subcode = subcode;
+ this.reason = reason;
+ }
+
+ /**
+ * Gets subcode
+ * @return subcode
+ */
+ public final String getSubcode()
+ {
+ return this.subcode;
+ }
+
+ /**
+ * Gets message
+ * @return message
+ */
+ public final String getReason()
+ {
+ return this.reason;
+ }
+
+}
Property changes on: stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/RMFaultCode.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/RMFaultConstant.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/RMFaultConstant.java (rev 0)
+++ stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/RMFaultConstant.java 2008-02-28 11:38:08 UTC (rev 5841)
@@ -0,0 +1,44 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * 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.ws.extensions.wsrm;
+
+/**
+ * These constant are used in fault details map
+ *
+ * @author richard.opalka(a)jboss.com
+ *
+ * @see org.jboss.ws.extensions.wsrm.RMFault
+ * @see org.jboss.ws.extensions.wsrm.RMFaultCode
+ */
+public final class RMFaultConstant
+{
+
+ /**
+ * Forbidden constructor
+ */
+ private RMFaultConstant() {}
+
+ public static final String IDENTIFIER = "identifier";
+ public static final String ACKNOWLEDGEMENT = "acknowledgement";
+ public static final String MAX_MESSAGE_NUMBER = "maxMessageNumber";
+
+}
Property changes on: stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/RMFaultConstant.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Modified: stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server/RMInvocationHandler.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server/RMInvocationHandler.java 2008-02-28 11:02:04 UTC (rev 5840)
+++ stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server/RMInvocationHandler.java 2008-02-28 11:38:08 UTC (rev 5841)
@@ -40,6 +40,9 @@
import org.jboss.ws.core.soap.MessageContextAssociation;
import org.jboss.ws.extensions.wsrm.RMAddressingConstants;
import org.jboss.ws.extensions.wsrm.RMConstant;
+import org.jboss.ws.extensions.wsrm.RMFault;
+import org.jboss.ws.extensions.wsrm.RMFaultCode;
+import org.jboss.ws.extensions.wsrm.RMFaultConstant;
import org.jboss.ws.extensions.wsrm.common.RMHelper;
import org.jboss.ws.extensions.wsrm.spi.RMConstants;
import org.jboss.ws.extensions.wsrm.spi.RMProvider;
@@ -124,15 +127,20 @@
private static synchronized Map<String, Object> prepareResponseContext(Endpoint ep, Invocation inv, String dataDir)
{
CommonMessageContext msgContext = MessageContextAssociation.peekMessageContext();
- AddressingProperties addrProps = (AddressingProperties)msgContext.get(JAXWSAConstants.SERVER_ADDRESSING_PROPERTIES_INBOUND);
- if (addrProps == null)
- throw new IllegalStateException("WS-Addressing properties not found in server request");
Map<String, Object> rmReqProps = (Map<String, Object>)msgContext.get(RMConstant.REQUEST_CONTEXT);
msgContext.remove(RMConstant.REQUEST_CONTEXT);
if (rmReqProps == null)
- throw new IllegalStateException("WS-RM specific data not found in server request");
+ {
+ throw new RMFault(RMFaultCode.WSRM_REQUIRED);
+ }
+ AddressingProperties addrProps = (AddressingProperties)msgContext.get(JAXWSAConstants.SERVER_ADDRESSING_PROPERTIES_INBOUND);
+ if (addrProps == null)
+ {
+ throw new IllegalStateException("WS-Addressing properties not found in server request");
+ }
+
List<QName> protocolMessages = new LinkedList<QName>();
Map<String, Object> rmResponseContext = new HashMap<String, Object>();
rmResponseContext.put(RMConstant.PROTOCOL_MESSAGES, protocolMessages);
@@ -155,10 +163,9 @@
RMCloseSequence payload = (RMCloseSequence)data.get(rmConstants.getCloseSequenceQName());
String seqIdentifier = payload.getIdentifier();
sequence = RMStore.deserialize(dataDir, seqIdentifier, true);
- //sequence = RMHelper.getServerSequenceByInboundId(seqIdentifier, sequences);
if (sequence == null)
{
- throw new NotImplementedException("TODO: implement unknown sequence fault" + seqIdentifier);
+ throw getUnknownSequenceFault(seqIdentifier);
}
sequence.close();
@@ -175,16 +182,24 @@
RMSequenceAcknowledgement payload = (RMSequenceAcknowledgement)data.get(rmConstants.getSequenceAcknowledgementQName());
String seqIdentifier = payload.getIdentifier();
sequence = RMStore.deserialize(dataDir, seqIdentifier, false);
- //sequence = RMHelper.getServerSequenceByOutboundId(seqIdentifier, sequences);
if (sequence == null)
{
- throw new NotImplementedException("TODO: implement unknown sequence fault" + seqIdentifier);
+ throw getUnknownSequenceFault(seqIdentifier);
}
for (RMSequenceAcknowledgement.RMAcknowledgementRange range : payload.getAcknowledgementRanges())
{
for (long i = range.getLower(); i <= range.getUpper(); i++)
{
+ if (i > sequence.getLastMessageNumber())
+ {
+ // invalid acknowledgement - generating fault
+ RMStore.serialize(dataDir, sequence);
+ Map<String, Object> detailsMap = new HashMap<String, Object>(2);
+ detailsMap.put(RMFaultConstant.ACKNOWLEDGEMENT, range);
+ throw new RMFault(RMFaultCode.INVALID_ACKNOWLEDGEMENT, new HashMap<String, Object>(2));
+ }
+
sequence.addReceivedOutboundMessage(i);
}
}
@@ -201,7 +216,7 @@
//sequence = RMHelper.getServerSequenceByInboundId(seqIdentifier, sequences);
if (sequence == null)
{
- throw new NotImplementedException("TODO: implement unknown sequence fault" + seqIdentifier);
+ throw getUnknownSequenceFault(seqIdentifier);
}
RMStore.serialize(dataDir, sequence); // TODO: serialization of terminated sequence results in no file
@@ -228,7 +243,7 @@
//sequence = RMHelper.getServerSequenceByInboundId(seqIdentifier, sequences);
if (sequence == null)
{
- throw new NotImplementedException("TODO: implement unknown sequence fault" + seqIdentifier);
+ throw getUnknownSequenceFault(seqIdentifier);
}
sequence.addReceivedInboundMessage(payload.getMessageNumber());
@@ -265,6 +280,13 @@
return rmResponseContext;
}
+ private static RMFault getUnknownSequenceFault(String sequenceId)
+ {
+ Map<String, Object> detailsMap = new HashMap<String, Object>(2);
+ detailsMap.put(RMFaultConstant.IDENTIFIER, sequenceId);
+ return new RMFault(RMFaultCode.UNKNOWN_SEQUENCE, detailsMap);
+ }
+
@Override
public final void invoke(Endpoint ep, Invocation inv) throws Exception
{
Modified: stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server/RMServerSequence.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server/RMServerSequence.java 2008-02-28 11:02:04 UTC (rev 5840)
+++ stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server/RMServerSequence.java 2008-02-28 11:38:08 UTC (rev 5841)
@@ -28,12 +28,18 @@
import java.io.ObjectOutputStream;
import java.io.ByteArrayOutputStream;
+import java.util.HashMap;
+import java.util.Map;
import java.util.Set;
import java.util.TreeSet;
import java.util.Iterator;
import org.jboss.logging.Logger;
import org.jboss.ws.extensions.addressing.AddressingClientUtil;
+import org.jboss.ws.extensions.wsrm.RMFault;
+import org.jboss.ws.extensions.wsrm.RMFaultCode;
+import org.jboss.ws.extensions.wsrm.RMFaultConstant;
+import org.jboss.ws.extensions.wsrm.RMFaultConstants;
import org.jboss.ws.extensions.wsrm.RMSequence;
/**
@@ -126,8 +132,26 @@
public final void addReceivedInboundMessage(long messageId)
{
- this.receivedInboundMessages.add(messageId);
- logger.debug("Inbound Sequence: " + this.inboundId + ", received message no. " + messageId);
+ if (this.closed)
+ {
+ Map<String, Object> detailsMap = new HashMap<String, Object>(2);
+ detailsMap.put(RMFaultConstant.IDENTIFIER, this.inboundId);
+ throw new RMFault(RMFaultCode.SEQUENCE_CLOSED, detailsMap);
+ }
+ else
+ {
+ if (messageId == Long.MAX_VALUE)
+ {
+ // maximum number achieved - generating fault
+ Map<String, Object> detailsMap = new HashMap<String, Object>(3);
+ detailsMap.put(RMFaultConstant.IDENTIFIER, this.inboundId);
+ detailsMap.put(RMFaultConstant.MAX_MESSAGE_NUMBER, this.messageNumber);
+ throw new RMFault(RMFaultCode.MESSAGE_NUMBER_ROLLOVER, detailsMap);
+ }
+
+ this.receivedInboundMessages.add(messageId);
+ logger.debug("Inbound Sequence: " + this.inboundId + ", received message no. " + messageId);
+ }
}
public final void addReceivedOutboundMessage(long messageId)
@@ -144,7 +168,14 @@
public final long newMessageNumber()
{
- // no need for synchronization
+ if (this.messageNumber == Long.MAX_VALUE)
+ {
+ Map<String, Object> detailsMap = new HashMap<String, Object>(3);
+ detailsMap.put(RMFaultConstant.IDENTIFIER, this.outboundId);
+ detailsMap.put(RMFaultConstant.MAX_MESSAGE_NUMBER, this.messageNumber);
+ throw new RMFault(RMFaultCode.MESSAGE_NUMBER_ROLLOVER, detailsMap);
+ }
+
return ++this.messageNumber;
}
@@ -174,11 +205,21 @@
this.closed = true;
}
+ public boolean isClosed()
+ {
+ return this.closed;
+ }
+
public void terminate()
{
this.terminated = true;
}
+ public boolean isTerminated()
+ {
+ return this.terminated;
+ }
+
public byte[] toByteArray() throws IOException
{
ByteArrayOutputStream baos = new ByteArrayOutputStream();
Modified: stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server/RMStore.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server/RMStore.java 2008-02-28 11:02:04 UTC (rev 5840)
+++ stack/native/trunk/src/main/java/org/jboss/ws/extensions/wsrm/server/RMStore.java 2008-02-28 11:38:08 UTC (rev 5841)
@@ -40,17 +40,27 @@
public static final void serialize(String dataDir, RMServerSequence seq)
{
File dir = new File(dataDir);
- dir.mkdirs();
- File file = new File(dir, seq.getId());
+ if (false == dir.exists())
+ {
+ dir.mkdirs();
+ }
+ File sequenceFile = new File(dir, seq.getId());
+ if (seq.isTerminated() && sequenceFile.exists())
+ {
+ // throw away terminated sequences
+ sequenceFile.delete();
+ return;
+ }
+
FileOutputStream fos = null;
try
{
- fos = new FileOutputStream(file);
+ fos = new FileOutputStream(sequenceFile);
fos.write(seq.toByteArray());
}
catch (IOException ioe)
{
- logger.error(ioe.getMessage(), ioe);
+ logger.error("Can't write sequence to file " + sequenceFile.getName(), ioe);
}
finally
{
@@ -60,9 +70,9 @@
{
fos.close();
}
- catch (IOException ignore)
+ catch (IOException ioe)
{
- // do nothing
+ logger.error("Can't close sequence file " + sequenceFile.getName(), ioe);
}
}
}
@@ -88,7 +98,7 @@
}
catch (IOException ioe)
{
- logger.error(ioe.getMessage(), ioe);
+ logger.error("Can't read sequence from file " + sequences[i].getName(), ioe);
}
}
16 years, 10 months
JBossWS SVN: r5840 - stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1871.
by jbossws-commits@lists.jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-02-28 06:02:04 -0500 (Thu, 28 Feb 2008)
New Revision: 5840
Modified:
stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1871/JBWS1871TestCase.java
Log:
Fix server host settings
Modified: stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1871/JBWS1871TestCase.java
===================================================================
--- stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1871/JBWS1871TestCase.java 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1871/JBWS1871TestCase.java 2008-02-28 11:02:04 UTC (rev 5840)
@@ -28,6 +28,7 @@
import javax.xml.namespace.QName;
import javax.xml.ws.Service;
import javax.xml.ws.WebServiceException;
+import java.net.URL;
/**
* Conformance (Handler resolver for a HandlerChain annotation): For a generated service class (see 2.7)
@@ -38,6 +39,7 @@
{
private final static String TNS = "http://jbws1871.jaxws.ws.test.jboss.org/";
private final static QName portName = new QName(TNS, "JBWS1871EndpointImplPort");
+ private final static QName serviceName = new QName(TNS, "JBWS1871EndpointImplService");
public static Test suite()
{
@@ -46,7 +48,9 @@
public void testServiceWithoutHandlerChain() throws Exception
{
- Service service = new JBWS1871EndpointImplService();
+ Service service = new JBWS1871EndpointImplService(
+ new URL("http://"+getServerHost()+":8080/jaxws-jbws1871?wsdl"), serviceName
+ );
JBWS1871Endpoint port = service.getPort(portName, JBWS1871Endpoint.class);
String res = port.echo("testServiceWithoutHandlerChain");
@@ -55,7 +59,9 @@
public void testServiceWithHandlerChain() throws Exception
{
- Service service = new HandlerChainService();
+ Service service = new HandlerChainService(
+ new URL("http://"+getServerHost()+":8080/jaxws-jbws1871?wsdl"), serviceName
+ );
JBWS1871Endpoint port = service.getPort(portName, JBWS1871Endpoint.class);
try
16 years, 10 months
JBossWS SVN: r5839 - in stack/native/trunk/src/test: java/org/jboss/test/ws/jaxws/jbws1857 and 3 other directories.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-02-28 05:40:41 -0500 (Thu, 28 Feb 2008)
New Revision: 5839
Added:
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/JBWS1857TestCase.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AdressArt.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AdressTyp.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Adresse.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AmtArt.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AnredeCode.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AusstellendeBehoerde.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteGlaeubiger.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteGlaeubigerResponse.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandant.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantResponse.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantUser.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantUserResponse.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteNatPerson.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteNatPersonResponse.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteUser.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteUserResponse.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ErrorCode.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ErrorScope.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchGlaeubiger.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchGlaeubigerResponse.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandant.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantResponse.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantUser.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantUserResponse.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchNatPerson.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchNatPersonResponse.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchUser.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchUserResponse.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Glaeubiger.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerArrayResult.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerResult.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerVerbindung.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerVertreter.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/HaftungArt.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/HerkunftReferenz.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertGlaeubiger.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertGlaeubigerResponse.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandant.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantResponse.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantUser.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantUserResponse.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertNatPerson.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertNatPersonResponse.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertUser.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertUserResponse.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/KantonType.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/LanguageType.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Mandant.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantArrayResult.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantResult.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUser.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUserArrayResult.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUserResult.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NatPersonResult.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Nationalitaet.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NationalitaetStatus.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NatuerlichePerson.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ObjectFactory.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Person.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonAdresse.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonInterface.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonenArt.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ServiceStatus.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Stammdaten.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/StammdatenService.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/StatusType.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateGlaeubiger.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateGlaeubigerResponse.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandant.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantResponse.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantUser.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantUserResponse.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateNatPerson.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateNatPersonResponse.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateUser.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateUserResponse.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/User.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UserArrayResult.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UserResult.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/VerbindungsTyp.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Verlustschein.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/VerlustscheinArt.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/package-info.java
stack/native/trunk/src/test/resources/jaxws/jbws1857/
stack/native/trunk/src/test/resources/jaxws/jbws1857/StammdatenService.wsdl
Log:
[JBWS-1857] JAXBContext created for every wrapper typed
Add test
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/JBWS1857TestCase.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/JBWS1857TestCase.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/JBWS1857TestCase.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,52 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * 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.test.ws.jaxws.jbws1857;
+
+import java.io.File;
+
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+
+import org.jboss.test.ws.jaxws.jbws1857.types.Stammdaten;
+import org.jboss.wsf.test.JBossWSTest;
+
+/**
+ * [JBWS-1857] JAXBContext created for every invokation of service.getPort()
+ *
+ * http://jira.jboss.org/jira/browse/JBWS-1857
+ *
+ * @author Thomas.Diesler(a)jboss.com
+ * @since 28-Feb-2008
+ */
+public class JBWS1857TestCase extends JBossWSTest
+{
+
+ public void testPortCreation() throws Exception
+ {
+ File wsdlFile = new File("resources/jaxws/jbws1857/StammdatenService.wsdl");
+ assertTrue(wsdlFile.exists());
+
+ QName serviceName = new QName("http://example.com", "StammdatenService");
+ Service service = Service.create(wsdlFile.toURL(), serviceName);
+ Stammdaten port = service.getPort(Stammdaten.class);
+ }
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/JBWS1857TestCase.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AdressArt.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AdressArt.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AdressArt.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,40 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for adressArt.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * <simpleType name="adressArt">
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * <enumeration value="KORRESPONDENZADRESSE"/>
+ * <enumeration value="WOHNADRESSE"/>
+ * <enumeration value="UNBEKANNT"/>
+ * </restriction>
+ * </simpleType>
+ * </pre>
+ *
+ */
+@XmlType(name = "adressArt")
+@XmlEnum
+public enum AdressArt {
+
+ KORRESPONDENZADRESSE,
+ WOHNADRESSE,
+ UNBEKANNT;
+
+ public String value() {
+ return name();
+ }
+
+ public static AdressArt fromValue(String v) {
+ return valueOf(v);
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AdressArt.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AdressTyp.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AdressTyp.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AdressTyp.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,46 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for adressTyp.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * <simpleType name="adressTyp">
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * <enumeration value="SCHULDNER"/>
+ * <enumeration value="AUSSTELLENDE_BEHOERDE"/>
+ * <enumeration value="BETREIBUNGS_KONKURSAMT"/>
+ * <enumeration value="GLAEUBIGER_VERTRETER"/>
+ * <enumeration value="GLAEUBIGER"/>
+ * <enumeration value="MANDANT"/>
+ * </restriction>
+ * </simpleType>
+ * </pre>
+ *
+ */
+@XmlType(name = "adressTyp")
+@XmlEnum
+public enum AdressTyp {
+
+ SCHULDNER,
+ AUSSTELLENDE_BEHOERDE,
+ BETREIBUNGS_KONKURSAMT,
+ GLAEUBIGER_VERTRETER,
+ GLAEUBIGER,
+ MANDANT;
+
+ public String value() {
+ return name();
+ }
+
+ public static AdressTyp fromValue(String v) {
+ return valueOf(v);
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AdressTyp.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Adresse.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Adresse.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Adresse.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,731 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+
+/**
+ * <p>Java class for adresse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="adresse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="adressArt" type="{http://example.com}adressArt" minOccurs="0"/>
+ * <element name="adressTyp" type="{http://example.com}adressTyp" minOccurs="0"/>
+ * <element name="adressZeile1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="adressZeile2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="adresseId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ * <element name="bezeichnung1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="bezeichnung2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="dateCreated" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="dateModified" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="fax" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="gebiet" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="hausnummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="mandantId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ * <element name="ort" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="plz" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="plzAusland" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="plzZusatz" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="postfachNr" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="postfachText" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="strasse" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="telefonGeschaeft" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="telefonHandy" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="telefonPrivat" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="userIdCreated" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="userIdModified" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "adresse", propOrder = {
+ "adressArt",
+ "adressTyp",
+ "adressZeile1",
+ "adressZeile2",
+ "adresseId",
+ "bezeichnung1",
+ "bezeichnung2",
+ "dateCreated",
+ "dateModified",
+ "email",
+ "fax",
+ "gebiet",
+ "hausnummer",
+ "mandantId",
+ "ort",
+ "plz",
+ "plzAusland",
+ "plzZusatz",
+ "postfachNr",
+ "postfachText",
+ "strasse",
+ "telefonGeschaeft",
+ "telefonHandy",
+ "telefonPrivat",
+ "userIdCreated",
+ "userIdModified"
+})
+public class Adresse {
+
+ protected AdressArt adressArt;
+ protected AdressTyp adressTyp;
+ protected String adressZeile1;
+ protected String adressZeile2;
+ protected Long adresseId;
+ protected String bezeichnung1;
+ protected String bezeichnung2;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar dateCreated;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar dateModified;
+ protected String email;
+ protected String fax;
+ protected String gebiet;
+ protected String hausnummer;
+ protected Long mandantId;
+ protected String ort;
+ protected String plz;
+ protected String plzAusland;
+ protected String plzZusatz;
+ protected int postfachNr;
+ protected String postfachText;
+ protected String strasse;
+ protected String telefonGeschaeft;
+ protected String telefonHandy;
+ protected String telefonPrivat;
+ protected String userIdCreated;
+ protected String userIdModified;
+
+ /**
+ * Gets the value of the adressArt property.
+ *
+ * @return
+ * possible object is
+ * {@link AdressArt }
+ *
+ */
+ public AdressArt getAdressArt() {
+ return adressArt;
+ }
+
+ /**
+ * Sets the value of the adressArt property.
+ *
+ * @param value
+ * allowed object is
+ * {@link AdressArt }
+ *
+ */
+ public void setAdressArt(AdressArt value) {
+ this.adressArt = value;
+ }
+
+ /**
+ * Gets the value of the adressTyp property.
+ *
+ * @return
+ * possible object is
+ * {@link AdressTyp }
+ *
+ */
+ public AdressTyp getAdressTyp() {
+ return adressTyp;
+ }
+
+ /**
+ * Sets the value of the adressTyp property.
+ *
+ * @param value
+ * allowed object is
+ * {@link AdressTyp }
+ *
+ */
+ public void setAdressTyp(AdressTyp value) {
+ this.adressTyp = value;
+ }
+
+ /**
+ * Gets the value of the adressZeile1 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getAdressZeile1() {
+ return adressZeile1;
+ }
+
+ /**
+ * Sets the value of the adressZeile1 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setAdressZeile1(String value) {
+ this.adressZeile1 = value;
+ }
+
+ /**
+ * Gets the value of the adressZeile2 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getAdressZeile2() {
+ return adressZeile2;
+ }
+
+ /**
+ * Sets the value of the adressZeile2 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setAdressZeile2(String value) {
+ this.adressZeile2 = value;
+ }
+
+ /**
+ * Gets the value of the adresseId property.
+ *
+ * @return
+ * possible object is
+ * {@link Long }
+ *
+ */
+ public Long getAdresseId() {
+ return adresseId;
+ }
+
+ /**
+ * Sets the value of the adresseId property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Long }
+ *
+ */
+ public void setAdresseId(Long value) {
+ this.adresseId = value;
+ }
+
+ /**
+ * Gets the value of the bezeichnung1 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getBezeichnung1() {
+ return bezeichnung1;
+ }
+
+ /**
+ * Sets the value of the bezeichnung1 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setBezeichnung1(String value) {
+ this.bezeichnung1 = value;
+ }
+
+ /**
+ * Gets the value of the bezeichnung2 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getBezeichnung2() {
+ return bezeichnung2;
+ }
+
+ /**
+ * Sets the value of the bezeichnung2 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setBezeichnung2(String value) {
+ this.bezeichnung2 = value;
+ }
+
+ /**
+ * Gets the value of the dateCreated property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getDateCreated() {
+ return dateCreated;
+ }
+
+ /**
+ * Sets the value of the dateCreated property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setDateCreated(XMLGregorianCalendar value) {
+ this.dateCreated = value;
+ }
+
+ /**
+ * Gets the value of the dateModified property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getDateModified() {
+ return dateModified;
+ }
+
+ /**
+ * Sets the value of the dateModified property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setDateModified(XMLGregorianCalendar value) {
+ this.dateModified = value;
+ }
+
+ /**
+ * Gets the value of the email property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getEmail() {
+ return email;
+ }
+
+ /**
+ * Sets the value of the email property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setEmail(String value) {
+ this.email = value;
+ }
+
+ /**
+ * Gets the value of the fax property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getFax() {
+ return fax;
+ }
+
+ /**
+ * Sets the value of the fax property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setFax(String value) {
+ this.fax = value;
+ }
+
+ /**
+ * Gets the value of the gebiet property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getGebiet() {
+ return gebiet;
+ }
+
+ /**
+ * Sets the value of the gebiet property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setGebiet(String value) {
+ this.gebiet = value;
+ }
+
+ /**
+ * Gets the value of the hausnummer property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getHausnummer() {
+ return hausnummer;
+ }
+
+ /**
+ * Sets the value of the hausnummer property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setHausnummer(String value) {
+ this.hausnummer = value;
+ }
+
+ /**
+ * Gets the value of the mandantId property.
+ *
+ * @return
+ * possible object is
+ * {@link Long }
+ *
+ */
+ public Long getMandantId() {
+ return mandantId;
+ }
+
+ /**
+ * Sets the value of the mandantId property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Long }
+ *
+ */
+ public void setMandantId(Long value) {
+ this.mandantId = value;
+ }
+
+ /**
+ * Gets the value of the ort property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getOrt() {
+ return ort;
+ }
+
+ /**
+ * Sets the value of the ort property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setOrt(String value) {
+ this.ort = value;
+ }
+
+ /**
+ * Gets the value of the plz property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getPlz() {
+ return plz;
+ }
+
+ /**
+ * Sets the value of the plz property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setPlz(String value) {
+ this.plz = value;
+ }
+
+ /**
+ * Gets the value of the plzAusland property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getPlzAusland() {
+ return plzAusland;
+ }
+
+ /**
+ * Sets the value of the plzAusland property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setPlzAusland(String value) {
+ this.plzAusland = value;
+ }
+
+ /**
+ * Gets the value of the plzZusatz property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getPlzZusatz() {
+ return plzZusatz;
+ }
+
+ /**
+ * Sets the value of the plzZusatz property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setPlzZusatz(String value) {
+ this.plzZusatz = value;
+ }
+
+ /**
+ * Gets the value of the postfachNr property.
+ *
+ */
+ public int getPostfachNr() {
+ return postfachNr;
+ }
+
+ /**
+ * Sets the value of the postfachNr property.
+ *
+ */
+ public void setPostfachNr(int value) {
+ this.postfachNr = value;
+ }
+
+ /**
+ * Gets the value of the postfachText property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getPostfachText() {
+ return postfachText;
+ }
+
+ /**
+ * Sets the value of the postfachText property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setPostfachText(String value) {
+ this.postfachText = value;
+ }
+
+ /**
+ * Gets the value of the strasse property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getStrasse() {
+ return strasse;
+ }
+
+ /**
+ * Sets the value of the strasse property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setStrasse(String value) {
+ this.strasse = value;
+ }
+
+ /**
+ * Gets the value of the telefonGeschaeft property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getTelefonGeschaeft() {
+ return telefonGeschaeft;
+ }
+
+ /**
+ * Sets the value of the telefonGeschaeft property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setTelefonGeschaeft(String value) {
+ this.telefonGeschaeft = value;
+ }
+
+ /**
+ * Gets the value of the telefonHandy property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getTelefonHandy() {
+ return telefonHandy;
+ }
+
+ /**
+ * Sets the value of the telefonHandy property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setTelefonHandy(String value) {
+ this.telefonHandy = value;
+ }
+
+ /**
+ * Gets the value of the telefonPrivat property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getTelefonPrivat() {
+ return telefonPrivat;
+ }
+
+ /**
+ * Sets the value of the telefonPrivat property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setTelefonPrivat(String value) {
+ this.telefonPrivat = value;
+ }
+
+ /**
+ * Gets the value of the userIdCreated property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUserIdCreated() {
+ return userIdCreated;
+ }
+
+ /**
+ * Sets the value of the userIdCreated property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUserIdCreated(String value) {
+ this.userIdCreated = value;
+ }
+
+ /**
+ * Gets the value of the userIdModified property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUserIdModified() {
+ return userIdModified;
+ }
+
+ /**
+ * Sets the value of the userIdModified property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUserIdModified(String value) {
+ this.userIdModified = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Adresse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AmtArt.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AmtArt.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AmtArt.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,40 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for amtArt.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * <simpleType name="amtArt">
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * <enumeration value="KONKURSAMT"/>
+ * <enumeration value="BETREIBUNGSAMT"/>
+ * <enumeration value="UNBEKANNT"/>
+ * </restriction>
+ * </simpleType>
+ * </pre>
+ *
+ */
+@XmlType(name = "amtArt")
+@XmlEnum
+public enum AmtArt {
+
+ KONKURSAMT,
+ BETREIBUNGSAMT,
+ UNBEKANNT;
+
+ public String value() {
+ return name();
+ }
+
+ public static AmtArt fromValue(String v) {
+ return valueOf(v);
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AmtArt.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AnredeCode.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AnredeCode.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AnredeCode.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,42 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for anredeCode.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * <simpleType name="anredeCode">
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * <enumeration value="FRAEULEIN"/>
+ * <enumeration value="FRAU"/>
+ * <enumeration value="HERR"/>
+ * <enumeration value="UNBEKANNT"/>
+ * </restriction>
+ * </simpleType>
+ * </pre>
+ *
+ */
+@XmlType(name = "anredeCode")
+@XmlEnum
+public enum AnredeCode {
+
+ FRAEULEIN,
+ FRAU,
+ HERR,
+ UNBEKANNT;
+
+ public String value() {
+ return name();
+ }
+
+ public static AnredeCode fromValue(String v) {
+ return valueOf(v);
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AnredeCode.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AusstellendeBehoerde.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AusstellendeBehoerde.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AusstellendeBehoerde.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,280 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+
+/**
+ * <p>Java class for ausstellendeBehoerde complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="ausstellendeBehoerde">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="adresse" type="{http://example.com}adresse" minOccurs="0"/>
+ * <element name="amtArt" type="{http://example.com}amtArt" minOccurs="0"/>
+ * <element name="amtsId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ * <element name="ausstellendeBehoerdeId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ * <element name="dateCreated" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="dateModified" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="mandant" type="{http://example.com}mandant" minOccurs="0"/>
+ * <element name="userIdCreated" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="userIdModified" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "ausstellendeBehoerde", propOrder = {
+ "adresse",
+ "amtArt",
+ "amtsId",
+ "ausstellendeBehoerdeId",
+ "dateCreated",
+ "dateModified",
+ "mandant",
+ "userIdCreated",
+ "userIdModified"
+})
+public class AusstellendeBehoerde {
+
+ protected Adresse adresse;
+ protected AmtArt amtArt;
+ protected Long amtsId;
+ protected Long ausstellendeBehoerdeId;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar dateCreated;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar dateModified;
+ protected Mandant mandant;
+ protected String userIdCreated;
+ protected String userIdModified;
+
+ /**
+ * Gets the value of the adresse property.
+ *
+ * @return
+ * possible object is
+ * {@link Adresse }
+ *
+ */
+ public Adresse getAdresse() {
+ return adresse;
+ }
+
+ /**
+ * Sets the value of the adresse property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Adresse }
+ *
+ */
+ public void setAdresse(Adresse value) {
+ this.adresse = value;
+ }
+
+ /**
+ * Gets the value of the amtArt property.
+ *
+ * @return
+ * possible object is
+ * {@link AmtArt }
+ *
+ */
+ public AmtArt getAmtArt() {
+ return amtArt;
+ }
+
+ /**
+ * Sets the value of the amtArt property.
+ *
+ * @param value
+ * allowed object is
+ * {@link AmtArt }
+ *
+ */
+ public void setAmtArt(AmtArt value) {
+ this.amtArt = value;
+ }
+
+ /**
+ * Gets the value of the amtsId property.
+ *
+ * @return
+ * possible object is
+ * {@link Long }
+ *
+ */
+ public Long getAmtsId() {
+ return amtsId;
+ }
+
+ /**
+ * Sets the value of the amtsId property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Long }
+ *
+ */
+ public void setAmtsId(Long value) {
+ this.amtsId = value;
+ }
+
+ /**
+ * Gets the value of the ausstellendeBehoerdeId property.
+ *
+ * @return
+ * possible object is
+ * {@link Long }
+ *
+ */
+ public Long getAusstellendeBehoerdeId() {
+ return ausstellendeBehoerdeId;
+ }
+
+ /**
+ * Sets the value of the ausstellendeBehoerdeId property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Long }
+ *
+ */
+ public void setAusstellendeBehoerdeId(Long value) {
+ this.ausstellendeBehoerdeId = value;
+ }
+
+ /**
+ * Gets the value of the dateCreated property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getDateCreated() {
+ return dateCreated;
+ }
+
+ /**
+ * Sets the value of the dateCreated property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setDateCreated(XMLGregorianCalendar value) {
+ this.dateCreated = value;
+ }
+
+ /**
+ * Gets the value of the dateModified property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getDateModified() {
+ return dateModified;
+ }
+
+ /**
+ * Sets the value of the dateModified property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setDateModified(XMLGregorianCalendar value) {
+ this.dateModified = value;
+ }
+
+ /**
+ * Gets the value of the mandant property.
+ *
+ * @return
+ * possible object is
+ * {@link Mandant }
+ *
+ */
+ public Mandant getMandant() {
+ return mandant;
+ }
+
+ /**
+ * Sets the value of the mandant property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Mandant }
+ *
+ */
+ public void setMandant(Mandant value) {
+ this.mandant = value;
+ }
+
+ /**
+ * Gets the value of the userIdCreated property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUserIdCreated() {
+ return userIdCreated;
+ }
+
+ /**
+ * Sets the value of the userIdCreated property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUserIdCreated(String value) {
+ this.userIdCreated = value;
+ }
+
+ /**
+ * Gets the value of the userIdModified property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUserIdModified() {
+ return userIdModified;
+ }
+
+ /**
+ * Sets the value of the userIdModified property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUserIdModified(String value) {
+ this.userIdModified = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AusstellendeBehoerde.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteGlaeubiger.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteGlaeubiger.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteGlaeubiger.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,60 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for deleteGlaeubiger complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="deleteGlaeubiger">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="arg0" type="{http://example.com}glaeubiger" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "deleteGlaeubiger", propOrder = {
+ "arg0"
+})
+public class DeleteGlaeubiger {
+
+ protected Glaeubiger arg0;
+
+ /**
+ * Gets the value of the arg0 property.
+ *
+ * @return
+ * possible object is
+ * {@link Glaeubiger }
+ *
+ */
+ public Glaeubiger getArg0() {
+ return arg0;
+ }
+
+ /**
+ * Sets the value of the arg0 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Glaeubiger }
+ *
+ */
+ public void setArg0(Glaeubiger value) {
+ this.arg0 = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteGlaeubiger.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteGlaeubigerResponse.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteGlaeubigerResponse.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteGlaeubigerResponse.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,62 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for deleteGlaeubigerResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="deleteGlaeubigerResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://example.com}glaeubigerResult" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "deleteGlaeubigerResponse", propOrder = {
+ "_return"
+})
+public class DeleteGlaeubigerResponse {
+
+ @XmlElement(name = "return")
+ protected GlaeubigerResult _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link GlaeubigerResult }
+ *
+ */
+ public GlaeubigerResult getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link GlaeubigerResult }
+ *
+ */
+ public void setReturn(GlaeubigerResult value) {
+ this._return = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteGlaeubigerResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandant.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandant.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandant.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,60 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for deleteMandant complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="deleteMandant">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="arg0" type="{http://example.com}mandant" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "deleteMandant", propOrder = {
+ "arg0"
+})
+public class DeleteMandant {
+
+ protected Mandant arg0;
+
+ /**
+ * Gets the value of the arg0 property.
+ *
+ * @return
+ * possible object is
+ * {@link Mandant }
+ *
+ */
+ public Mandant getArg0() {
+ return arg0;
+ }
+
+ /**
+ * Sets the value of the arg0 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Mandant }
+ *
+ */
+ public void setArg0(Mandant value) {
+ this.arg0 = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandant.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantResponse.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantResponse.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantResponse.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,62 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for deleteMandantResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="deleteMandantResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://example.com}mandantResult" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "deleteMandantResponse", propOrder = {
+ "_return"
+})
+public class DeleteMandantResponse {
+
+ @XmlElement(name = "return")
+ protected MandantResult _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link MandantResult }
+ *
+ */
+ public MandantResult getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link MandantResult }
+ *
+ */
+ public void setReturn(MandantResult value) {
+ this._return = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantUser.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantUser.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantUser.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,60 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for deleteMandantUser complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="deleteMandantUser">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="arg0" type="{http://example.com}mandantUser" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "deleteMandantUser", propOrder = {
+ "arg0"
+})
+public class DeleteMandantUser {
+
+ protected MandantUser arg0;
+
+ /**
+ * Gets the value of the arg0 property.
+ *
+ * @return
+ * possible object is
+ * {@link MandantUser }
+ *
+ */
+ public MandantUser getArg0() {
+ return arg0;
+ }
+
+ /**
+ * Sets the value of the arg0 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link MandantUser }
+ *
+ */
+ public void setArg0(MandantUser value) {
+ this.arg0 = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantUser.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantUserResponse.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantUserResponse.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantUserResponse.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,62 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for deleteMandantUserResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="deleteMandantUserResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://example.com}mandantUserResult" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "deleteMandantUserResponse", propOrder = {
+ "_return"
+})
+public class DeleteMandantUserResponse {
+
+ @XmlElement(name = "return")
+ protected MandantUserResult _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link MandantUserResult }
+ *
+ */
+ public MandantUserResult getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link MandantUserResult }
+ *
+ */
+ public void setReturn(MandantUserResult value) {
+ this._return = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantUserResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteNatPerson.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteNatPerson.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteNatPerson.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,60 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for deleteNatPerson complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="deleteNatPerson">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="arg0" type="{http://example.com}natuerlichePerson" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "deleteNatPerson", propOrder = {
+ "arg0"
+})
+public class DeleteNatPerson {
+
+ protected NatuerlichePerson arg0;
+
+ /**
+ * Gets the value of the arg0 property.
+ *
+ * @return
+ * possible object is
+ * {@link NatuerlichePerson }
+ *
+ */
+ public NatuerlichePerson getArg0() {
+ return arg0;
+ }
+
+ /**
+ * Sets the value of the arg0 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link NatuerlichePerson }
+ *
+ */
+ public void setArg0(NatuerlichePerson value) {
+ this.arg0 = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteNatPerson.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteNatPersonResponse.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteNatPersonResponse.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteNatPersonResponse.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,62 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for deleteNatPersonResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="deleteNatPersonResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://example.com}natPersonResult" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "deleteNatPersonResponse", propOrder = {
+ "_return"
+})
+public class DeleteNatPersonResponse {
+
+ @XmlElement(name = "return")
+ protected NatPersonResult _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link NatPersonResult }
+ *
+ */
+ public NatPersonResult getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link NatPersonResult }
+ *
+ */
+ public void setReturn(NatPersonResult value) {
+ this._return = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteNatPersonResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteUser.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteUser.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteUser.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,60 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for deleteUser complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="deleteUser">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="arg0" type="{http://example.com}user" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "deleteUser", propOrder = {
+ "arg0"
+})
+public class DeleteUser {
+
+ protected User arg0;
+
+ /**
+ * Gets the value of the arg0 property.
+ *
+ * @return
+ * possible object is
+ * {@link User }
+ *
+ */
+ public User getArg0() {
+ return arg0;
+ }
+
+ /**
+ * Sets the value of the arg0 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link User }
+ *
+ */
+ public void setArg0(User value) {
+ this.arg0 = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteUser.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteUserResponse.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteUserResponse.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteUserResponse.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,62 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for deleteUserResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="deleteUserResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://example.com}userResult" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "deleteUserResponse", propOrder = {
+ "_return"
+})
+public class DeleteUserResponse {
+
+ @XmlElement(name = "return")
+ protected UserResult _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link UserResult }
+ *
+ */
+ public UserResult getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link UserResult }
+ *
+ */
+ public void setReturn(UserResult value) {
+ this._return = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteUserResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ErrorCode.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ErrorCode.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ErrorCode.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,42 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for errorCode.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * <simpleType name="errorCode">
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * <enumeration value="VALIDATION_EXCEPTION"/>
+ * <enumeration value="BUSINESS_WARNING"/>
+ * <enumeration value="HOST_BUSINESS_EXCEPTION_1"/>
+ * <enumeration value="DEFAULT_TECHNICAL_EXCEPTION"/>
+ * </restriction>
+ * </simpleType>
+ * </pre>
+ *
+ */
+@XmlType(name = "errorCode")
+@XmlEnum
+public enum ErrorCode {
+
+ VALIDATION_EXCEPTION,
+ BUSINESS_WARNING,
+ HOST_BUSINESS_EXCEPTION_1,
+ DEFAULT_TECHNICAL_EXCEPTION;
+
+ public String value() {
+ return name();
+ }
+
+ public static ErrorCode fromValue(String v) {
+ return valueOf(v);
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ErrorCode.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ErrorScope.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ErrorScope.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ErrorScope.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,40 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for errorScope.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * <simpleType name="errorScope">
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * <enumeration value="VICLIENT"/>
+ * <enumeration value="HOST"/>
+ * <enumeration value="VIAPP"/>
+ * </restriction>
+ * </simpleType>
+ * </pre>
+ *
+ */
+@XmlType(name = "errorScope")
+@XmlEnum
+public enum ErrorScope {
+
+ VICLIENT,
+ HOST,
+ VIAPP;
+
+ public String value() {
+ return name();
+ }
+
+ public static ErrorScope fromValue(String v) {
+ return valueOf(v);
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ErrorScope.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchGlaeubiger.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchGlaeubiger.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchGlaeubiger.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,60 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for fetchGlaeubiger complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="fetchGlaeubiger">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="arg0" type="{http://example.com}glaeubiger" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "fetchGlaeubiger", propOrder = {
+ "arg0"
+})
+public class FetchGlaeubiger {
+
+ protected Glaeubiger arg0;
+
+ /**
+ * Gets the value of the arg0 property.
+ *
+ * @return
+ * possible object is
+ * {@link Glaeubiger }
+ *
+ */
+ public Glaeubiger getArg0() {
+ return arg0;
+ }
+
+ /**
+ * Sets the value of the arg0 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Glaeubiger }
+ *
+ */
+ public void setArg0(Glaeubiger value) {
+ this.arg0 = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchGlaeubiger.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchGlaeubigerResponse.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchGlaeubigerResponse.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchGlaeubigerResponse.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,62 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for fetchGlaeubigerResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="fetchGlaeubigerResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://example.com}glaeubigerArrayResult" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "fetchGlaeubigerResponse", propOrder = {
+ "_return"
+})
+public class FetchGlaeubigerResponse {
+
+ @XmlElement(name = "return")
+ protected GlaeubigerArrayResult _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link GlaeubigerArrayResult }
+ *
+ */
+ public GlaeubigerArrayResult getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link GlaeubigerArrayResult }
+ *
+ */
+ public void setReturn(GlaeubigerArrayResult value) {
+ this._return = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchGlaeubigerResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandant.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandant.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandant.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,60 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for fetchMandant complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="fetchMandant">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="arg0" type="{http://example.com}mandant" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "fetchMandant", propOrder = {
+ "arg0"
+})
+public class FetchMandant {
+
+ protected Mandant arg0;
+
+ /**
+ * Gets the value of the arg0 property.
+ *
+ * @return
+ * possible object is
+ * {@link Mandant }
+ *
+ */
+ public Mandant getArg0() {
+ return arg0;
+ }
+
+ /**
+ * Sets the value of the arg0 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Mandant }
+ *
+ */
+ public void setArg0(Mandant value) {
+ this.arg0 = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandant.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantResponse.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantResponse.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantResponse.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,62 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for fetchMandantResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="fetchMandantResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://example.com}mandantArrayResult" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "fetchMandantResponse", propOrder = {
+ "_return"
+})
+public class FetchMandantResponse {
+
+ @XmlElement(name = "return")
+ protected MandantArrayResult _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link MandantArrayResult }
+ *
+ */
+ public MandantArrayResult getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link MandantArrayResult }
+ *
+ */
+ public void setReturn(MandantArrayResult value) {
+ this._return = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantUser.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantUser.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantUser.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,60 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for fetchMandantUser complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="fetchMandantUser">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="arg0" type="{http://example.com}mandantUser" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "fetchMandantUser", propOrder = {
+ "arg0"
+})
+public class FetchMandantUser {
+
+ protected MandantUser arg0;
+
+ /**
+ * Gets the value of the arg0 property.
+ *
+ * @return
+ * possible object is
+ * {@link MandantUser }
+ *
+ */
+ public MandantUser getArg0() {
+ return arg0;
+ }
+
+ /**
+ * Sets the value of the arg0 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link MandantUser }
+ *
+ */
+ public void setArg0(MandantUser value) {
+ this.arg0 = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantUser.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantUserResponse.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantUserResponse.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantUserResponse.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,62 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for fetchMandantUserResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="fetchMandantUserResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://example.com}mandantUserArrayResult" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "fetchMandantUserResponse", propOrder = {
+ "_return"
+})
+public class FetchMandantUserResponse {
+
+ @XmlElement(name = "return")
+ protected MandantUserArrayResult _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link MandantUserArrayResult }
+ *
+ */
+ public MandantUserArrayResult getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link MandantUserArrayResult }
+ *
+ */
+ public void setReturn(MandantUserArrayResult value) {
+ this._return = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantUserResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchNatPerson.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchNatPerson.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchNatPerson.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,60 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for fetchNatPerson complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="fetchNatPerson">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="arg0" type="{http://example.com}natuerlichePerson" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "fetchNatPerson", propOrder = {
+ "arg0"
+})
+public class FetchNatPerson {
+
+ protected NatuerlichePerson arg0;
+
+ /**
+ * Gets the value of the arg0 property.
+ *
+ * @return
+ * possible object is
+ * {@link NatuerlichePerson }
+ *
+ */
+ public NatuerlichePerson getArg0() {
+ return arg0;
+ }
+
+ /**
+ * Sets the value of the arg0 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link NatuerlichePerson }
+ *
+ */
+ public void setArg0(NatuerlichePerson value) {
+ this.arg0 = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchNatPerson.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchNatPersonResponse.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchNatPersonResponse.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchNatPersonResponse.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,62 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for fetchNatPersonResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="fetchNatPersonResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://example.com}natPersonResult" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "fetchNatPersonResponse", propOrder = {
+ "_return"
+})
+public class FetchNatPersonResponse {
+
+ @XmlElement(name = "return")
+ protected NatPersonResult _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link NatPersonResult }
+ *
+ */
+ public NatPersonResult getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link NatPersonResult }
+ *
+ */
+ public void setReturn(NatPersonResult value) {
+ this._return = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchNatPersonResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchUser.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchUser.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchUser.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,60 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for fetchUser complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="fetchUser">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="arg0" type="{http://example.com}user" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "fetchUser", propOrder = {
+ "arg0"
+})
+public class FetchUser {
+
+ protected User arg0;
+
+ /**
+ * Gets the value of the arg0 property.
+ *
+ * @return
+ * possible object is
+ * {@link User }
+ *
+ */
+ public User getArg0() {
+ return arg0;
+ }
+
+ /**
+ * Sets the value of the arg0 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link User }
+ *
+ */
+ public void setArg0(User value) {
+ this.arg0 = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchUser.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchUserResponse.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchUserResponse.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchUserResponse.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,62 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for fetchUserResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="fetchUserResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://example.com}userArrayResult" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "fetchUserResponse", propOrder = {
+ "_return"
+})
+public class FetchUserResponse {
+
+ @XmlElement(name = "return")
+ protected UserArrayResult _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link UserArrayResult }
+ *
+ */
+ public UserArrayResult getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link UserArrayResult }
+ *
+ */
+ public void setReturn(UserArrayResult value) {
+ this._return = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchUserResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Glaeubiger.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Glaeubiger.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Glaeubiger.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,481 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+
+/**
+ * <p>Java class for glaeubiger complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="glaeubiger">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="adresse" type="{http://example.com}adresse" minOccurs="0"/>
+ * <element name="dateCreated" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="dateModified" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="glaeubigerId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ * <element name="glaeubigerName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="glaeubigerName1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="glaeubigerName2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="glaeubigerVerbindung" type="{http://example.com}glaeubigerVerbindung" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="gueltigBis" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="gueltigVon" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="mandant" type="{http://example.com}mandant" minOccurs="0"/>
+ * <element name="sprache" type="{http://example.com}languageType" minOccurs="0"/>
+ * <element name="status" type="{http://example.com}statusType" minOccurs="0"/>
+ * <element name="statusDatum" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="userIdCreated" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="userIdModified" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "glaeubiger", propOrder = {
+ "adresse",
+ "dateCreated",
+ "dateModified",
+ "glaeubigerId",
+ "glaeubigerName",
+ "glaeubigerName1",
+ "glaeubigerName2",
+ "glaeubigerVerbindung",
+ "gueltigBis",
+ "gueltigVon",
+ "mandant",
+ "sprache",
+ "status",
+ "statusDatum",
+ "userIdCreated",
+ "userIdModified"
+})
+public class Glaeubiger {
+
+ protected Adresse adresse;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar dateCreated;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar dateModified;
+ protected Long glaeubigerId;
+ protected String glaeubigerName;
+ protected String glaeubigerName1;
+ protected String glaeubigerName2;
+ @XmlElement(nillable = true)
+ protected List<GlaeubigerVerbindung> glaeubigerVerbindung;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar gueltigBis;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar gueltigVon;
+ protected Mandant mandant;
+ protected LanguageType sprache;
+ protected StatusType status;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar statusDatum;
+ protected String userIdCreated;
+ protected String userIdModified;
+
+ /**
+ * Gets the value of the adresse property.
+ *
+ * @return
+ * possible object is
+ * {@link Adresse }
+ *
+ */
+ public Adresse getAdresse() {
+ return adresse;
+ }
+
+ /**
+ * Sets the value of the adresse property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Adresse }
+ *
+ */
+ public void setAdresse(Adresse value) {
+ this.adresse = value;
+ }
+
+ /**
+ * Gets the value of the dateCreated property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getDateCreated() {
+ return dateCreated;
+ }
+
+ /**
+ * Sets the value of the dateCreated property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setDateCreated(XMLGregorianCalendar value) {
+ this.dateCreated = value;
+ }
+
+ /**
+ * Gets the value of the dateModified property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getDateModified() {
+ return dateModified;
+ }
+
+ /**
+ * Sets the value of the dateModified property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setDateModified(XMLGregorianCalendar value) {
+ this.dateModified = value;
+ }
+
+ /**
+ * Gets the value of the glaeubigerId property.
+ *
+ * @return
+ * possible object is
+ * {@link Long }
+ *
+ */
+ public Long getGlaeubigerId() {
+ return glaeubigerId;
+ }
+
+ /**
+ * Sets the value of the glaeubigerId property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Long }
+ *
+ */
+ public void setGlaeubigerId(Long value) {
+ this.glaeubigerId = value;
+ }
+
+ /**
+ * Gets the value of the glaeubigerName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getGlaeubigerName() {
+ return glaeubigerName;
+ }
+
+ /**
+ * Sets the value of the glaeubigerName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setGlaeubigerName(String value) {
+ this.glaeubigerName = value;
+ }
+
+ /**
+ * Gets the value of the glaeubigerName1 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getGlaeubigerName1() {
+ return glaeubigerName1;
+ }
+
+ /**
+ * Sets the value of the glaeubigerName1 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setGlaeubigerName1(String value) {
+ this.glaeubigerName1 = value;
+ }
+
+ /**
+ * Gets the value of the glaeubigerName2 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getGlaeubigerName2() {
+ return glaeubigerName2;
+ }
+
+ /**
+ * Sets the value of the glaeubigerName2 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setGlaeubigerName2(String value) {
+ this.glaeubigerName2 = value;
+ }
+
+ /**
+ * Gets the value of the glaeubigerVerbindung property.
+ *
+ * <p>
+ * 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 <CODE>set</CODE> method for the glaeubigerVerbindung property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getGlaeubigerVerbindung().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link GlaeubigerVerbindung }
+ *
+ *
+ */
+ public List<GlaeubigerVerbindung> getGlaeubigerVerbindung() {
+ if (glaeubigerVerbindung == null) {
+ glaeubigerVerbindung = new ArrayList<GlaeubigerVerbindung>();
+ }
+ return this.glaeubigerVerbindung;
+ }
+
+ /**
+ * Gets the value of the gueltigBis property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getGueltigBis() {
+ return gueltigBis;
+ }
+
+ /**
+ * Sets the value of the gueltigBis property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setGueltigBis(XMLGregorianCalendar value) {
+ this.gueltigBis = value;
+ }
+
+ /**
+ * Gets the value of the gueltigVon property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getGueltigVon() {
+ return gueltigVon;
+ }
+
+ /**
+ * Sets the value of the gueltigVon property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setGueltigVon(XMLGregorianCalendar value) {
+ this.gueltigVon = value;
+ }
+
+ /**
+ * Gets the value of the mandant property.
+ *
+ * @return
+ * possible object is
+ * {@link Mandant }
+ *
+ */
+ public Mandant getMandant() {
+ return mandant;
+ }
+
+ /**
+ * Sets the value of the mandant property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Mandant }
+ *
+ */
+ public void setMandant(Mandant value) {
+ this.mandant = value;
+ }
+
+ /**
+ * Gets the value of the sprache property.
+ *
+ * @return
+ * possible object is
+ * {@link LanguageType }
+ *
+ */
+ public LanguageType getSprache() {
+ return sprache;
+ }
+
+ /**
+ * Sets the value of the sprache property.
+ *
+ * @param value
+ * allowed object is
+ * {@link LanguageType }
+ *
+ */
+ public void setSprache(LanguageType value) {
+ this.sprache = value;
+ }
+
+ /**
+ * Gets the value of the status property.
+ *
+ * @return
+ * possible object is
+ * {@link StatusType }
+ *
+ */
+ public StatusType getStatus() {
+ return status;
+ }
+
+ /**
+ * Sets the value of the status property.
+ *
+ * @param value
+ * allowed object is
+ * {@link StatusType }
+ *
+ */
+ public void setStatus(StatusType value) {
+ this.status = value;
+ }
+
+ /**
+ * Gets the value of the statusDatum property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getStatusDatum() {
+ return statusDatum;
+ }
+
+ /**
+ * Sets the value of the statusDatum property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setStatusDatum(XMLGregorianCalendar value) {
+ this.statusDatum = value;
+ }
+
+ /**
+ * Gets the value of the userIdCreated property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUserIdCreated() {
+ return userIdCreated;
+ }
+
+ /**
+ * Sets the value of the userIdCreated property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUserIdCreated(String value) {
+ this.userIdCreated = value;
+ }
+
+ /**
+ * Gets the value of the userIdModified property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUserIdModified() {
+ return userIdModified;
+ }
+
+ /**
+ * Sets the value of the userIdModified property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUserIdModified(String value) {
+ this.userIdModified = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Glaeubiger.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerArrayResult.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerArrayResult.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerArrayResult.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,96 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for glaeubigerArrayResult complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="glaeubigerArrayResult">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="glaeubigerArray" type="{http://example.com}glaeubiger" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="serviceStatus" type="{http://example.com}serviceStatus" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "glaeubigerArrayResult", propOrder = {
+ "glaeubigerArray",
+ "serviceStatus"
+})
+public class GlaeubigerArrayResult {
+
+ @XmlElement(nillable = true)
+ protected List<Glaeubiger> glaeubigerArray;
+ protected ServiceStatus serviceStatus;
+
+ /**
+ * Gets the value of the glaeubigerArray property.
+ *
+ * <p>
+ * 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 <CODE>set</CODE> method for the glaeubigerArray property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getGlaeubigerArray().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link Glaeubiger }
+ *
+ *
+ */
+ public List<Glaeubiger> getGlaeubigerArray() {
+ if (glaeubigerArray == null) {
+ glaeubigerArray = new ArrayList<Glaeubiger>();
+ }
+ return this.glaeubigerArray;
+ }
+
+ /**
+ * Gets the value of the serviceStatus property.
+ *
+ * @return
+ * possible object is
+ * {@link ServiceStatus }
+ *
+ */
+ public ServiceStatus getServiceStatus() {
+ return serviceStatus;
+ }
+
+ /**
+ * Sets the value of the serviceStatus property.
+ *
+ * @param value
+ * allowed object is
+ * {@link ServiceStatus }
+ *
+ */
+ public void setServiceStatus(ServiceStatus value) {
+ this.serviceStatus = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerArrayResult.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerResult.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerResult.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerResult.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,87 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for glaeubigerResult complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="glaeubigerResult">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="glaeubiger" type="{http://example.com}glaeubiger" minOccurs="0"/>
+ * <element name="serviceStatus" type="{http://example.com}serviceStatus" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "glaeubigerResult", propOrder = {
+ "glaeubiger",
+ "serviceStatus"
+})
+public class GlaeubigerResult {
+
+ protected Glaeubiger glaeubiger;
+ protected ServiceStatus serviceStatus;
+
+ /**
+ * Gets the value of the glaeubiger property.
+ *
+ * @return
+ * possible object is
+ * {@link Glaeubiger }
+ *
+ */
+ public Glaeubiger getGlaeubiger() {
+ return glaeubiger;
+ }
+
+ /**
+ * Sets the value of the glaeubiger property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Glaeubiger }
+ *
+ */
+ public void setGlaeubiger(Glaeubiger value) {
+ this.glaeubiger = value;
+ }
+
+ /**
+ * Gets the value of the serviceStatus property.
+ *
+ * @return
+ * possible object is
+ * {@link ServiceStatus }
+ *
+ */
+ public ServiceStatus getServiceStatus() {
+ return serviceStatus;
+ }
+
+ /**
+ * Sets the value of the serviceStatus property.
+ *
+ * @param value
+ * allowed object is
+ * {@link ServiceStatus }
+ *
+ */
+ public void setServiceStatus(ServiceStatus value) {
+ this.serviceStatus = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerResult.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerVerbindung.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerVerbindung.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerVerbindung.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,227 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import java.math.BigDecimal;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+
+/**
+ * <p>Java class for glaeubigerVerbindung complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="glaeubigerVerbindung">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="dateCreated" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="dateModified" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="glaeubiger" type="{http://example.com}glaeubiger" minOccurs="0"/>
+ * <element name="quote" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ * <element name="userIdCreated" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="userIdModified" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="verlustschein" type="{http://example.com}verlustschein" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "glaeubigerVerbindung", propOrder = {
+ "dateCreated",
+ "dateModified",
+ "glaeubiger",
+ "quote",
+ "userIdCreated",
+ "userIdModified",
+ "verlustschein"
+})
+public class GlaeubigerVerbindung {
+
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar dateCreated;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar dateModified;
+ protected Glaeubiger glaeubiger;
+ protected BigDecimal quote;
+ protected String userIdCreated;
+ protected String userIdModified;
+ protected Verlustschein verlustschein;
+
+ /**
+ * Gets the value of the dateCreated property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getDateCreated() {
+ return dateCreated;
+ }
+
+ /**
+ * Sets the value of the dateCreated property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setDateCreated(XMLGregorianCalendar value) {
+ this.dateCreated = value;
+ }
+
+ /**
+ * Gets the value of the dateModified property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getDateModified() {
+ return dateModified;
+ }
+
+ /**
+ * Sets the value of the dateModified property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setDateModified(XMLGregorianCalendar value) {
+ this.dateModified = value;
+ }
+
+ /**
+ * Gets the value of the glaeubiger property.
+ *
+ * @return
+ * possible object is
+ * {@link Glaeubiger }
+ *
+ */
+ public Glaeubiger getGlaeubiger() {
+ return glaeubiger;
+ }
+
+ /**
+ * Sets the value of the glaeubiger property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Glaeubiger }
+ *
+ */
+ public void setGlaeubiger(Glaeubiger value) {
+ this.glaeubiger = value;
+ }
+
+ /**
+ * Gets the value of the quote property.
+ *
+ * @return
+ * possible object is
+ * {@link BigDecimal }
+ *
+ */
+ public BigDecimal getQuote() {
+ return quote;
+ }
+
+ /**
+ * Sets the value of the quote property.
+ *
+ * @param value
+ * allowed object is
+ * {@link BigDecimal }
+ *
+ */
+ public void setQuote(BigDecimal value) {
+ this.quote = value;
+ }
+
+ /**
+ * Gets the value of the userIdCreated property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUserIdCreated() {
+ return userIdCreated;
+ }
+
+ /**
+ * Sets the value of the userIdCreated property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUserIdCreated(String value) {
+ this.userIdCreated = value;
+ }
+
+ /**
+ * Gets the value of the userIdModified property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUserIdModified() {
+ return userIdModified;
+ }
+
+ /**
+ * Sets the value of the userIdModified property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUserIdModified(String value) {
+ this.userIdModified = value;
+ }
+
+ /**
+ * Gets the value of the verlustschein property.
+ *
+ * @return
+ * possible object is
+ * {@link Verlustschein }
+ *
+ */
+ public Verlustschein getVerlustschein() {
+ return verlustschein;
+ }
+
+ /**
+ * Sets the value of the verlustschein property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Verlustschein }
+ *
+ */
+ public void setVerlustschein(Verlustschein value) {
+ this.verlustschein = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerVerbindung.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerVertreter.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerVertreter.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerVertreter.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,499 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+
+/**
+ * <p>Java class for glaeubigerVertreter complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="glaeubigerVertreter">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="adresse" type="{http://example.com}adresse" minOccurs="0"/>
+ * <element name="dateCreated" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="dateModified" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="glaeubigerVertreterId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ * <element name="glaeubigerVertreterName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="glaeubigerVertreterName1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="glaeubigerVertreterName2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="gueltigBis" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="gueltigVon" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="ibanNr" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="mandant" type="{http://example.com}mandant" minOccurs="0"/>
+ * <element name="pcKonto" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="sprache" type="{http://example.com}languageType" minOccurs="0"/>
+ * <element name="status" type="{http://example.com}statusType" minOccurs="0"/>
+ * <element name="statusDatum" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="userIdCreated" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="userIdModified" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "glaeubigerVertreter", propOrder = {
+ "adresse",
+ "dateCreated",
+ "dateModified",
+ "glaeubigerVertreterId",
+ "glaeubigerVertreterName",
+ "glaeubigerVertreterName1",
+ "glaeubigerVertreterName2",
+ "gueltigBis",
+ "gueltigVon",
+ "ibanNr",
+ "mandant",
+ "pcKonto",
+ "sprache",
+ "status",
+ "statusDatum",
+ "userIdCreated",
+ "userIdModified"
+})
+public class GlaeubigerVertreter {
+
+ protected Adresse adresse;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar dateCreated;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar dateModified;
+ protected Long glaeubigerVertreterId;
+ protected String glaeubigerVertreterName;
+ protected String glaeubigerVertreterName1;
+ protected String glaeubigerVertreterName2;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar gueltigBis;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar gueltigVon;
+ protected String ibanNr;
+ protected Mandant mandant;
+ protected String pcKonto;
+ protected LanguageType sprache;
+ protected StatusType status;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar statusDatum;
+ protected String userIdCreated;
+ protected String userIdModified;
+
+ /**
+ * Gets the value of the adresse property.
+ *
+ * @return
+ * possible object is
+ * {@link Adresse }
+ *
+ */
+ public Adresse getAdresse() {
+ return adresse;
+ }
+
+ /**
+ * Sets the value of the adresse property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Adresse }
+ *
+ */
+ public void setAdresse(Adresse value) {
+ this.adresse = value;
+ }
+
+ /**
+ * Gets the value of the dateCreated property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getDateCreated() {
+ return dateCreated;
+ }
+
+ /**
+ * Sets the value of the dateCreated property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setDateCreated(XMLGregorianCalendar value) {
+ this.dateCreated = value;
+ }
+
+ /**
+ * Gets the value of the dateModified property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getDateModified() {
+ return dateModified;
+ }
+
+ /**
+ * Sets the value of the dateModified property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setDateModified(XMLGregorianCalendar value) {
+ this.dateModified = value;
+ }
+
+ /**
+ * Gets the value of the glaeubigerVertreterId property.
+ *
+ * @return
+ * possible object is
+ * {@link Long }
+ *
+ */
+ public Long getGlaeubigerVertreterId() {
+ return glaeubigerVertreterId;
+ }
+
+ /**
+ * Sets the value of the glaeubigerVertreterId property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Long }
+ *
+ */
+ public void setGlaeubigerVertreterId(Long value) {
+ this.glaeubigerVertreterId = value;
+ }
+
+ /**
+ * Gets the value of the glaeubigerVertreterName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getGlaeubigerVertreterName() {
+ return glaeubigerVertreterName;
+ }
+
+ /**
+ * Sets the value of the glaeubigerVertreterName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setGlaeubigerVertreterName(String value) {
+ this.glaeubigerVertreterName = value;
+ }
+
+ /**
+ * Gets the value of the glaeubigerVertreterName1 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getGlaeubigerVertreterName1() {
+ return glaeubigerVertreterName1;
+ }
+
+ /**
+ * Sets the value of the glaeubigerVertreterName1 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setGlaeubigerVertreterName1(String value) {
+ this.glaeubigerVertreterName1 = value;
+ }
+
+ /**
+ * Gets the value of the glaeubigerVertreterName2 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getGlaeubigerVertreterName2() {
+ return glaeubigerVertreterName2;
+ }
+
+ /**
+ * Sets the value of the glaeubigerVertreterName2 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setGlaeubigerVertreterName2(String value) {
+ this.glaeubigerVertreterName2 = value;
+ }
+
+ /**
+ * Gets the value of the gueltigBis property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getGueltigBis() {
+ return gueltigBis;
+ }
+
+ /**
+ * Sets the value of the gueltigBis property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setGueltigBis(XMLGregorianCalendar value) {
+ this.gueltigBis = value;
+ }
+
+ /**
+ * Gets the value of the gueltigVon property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getGueltigVon() {
+ return gueltigVon;
+ }
+
+ /**
+ * Sets the value of the gueltigVon property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setGueltigVon(XMLGregorianCalendar value) {
+ this.gueltigVon = value;
+ }
+
+ /**
+ * Gets the value of the ibanNr property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getIbanNr() {
+ return ibanNr;
+ }
+
+ /**
+ * Sets the value of the ibanNr property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setIbanNr(String value) {
+ this.ibanNr = value;
+ }
+
+ /**
+ * Gets the value of the mandant property.
+ *
+ * @return
+ * possible object is
+ * {@link Mandant }
+ *
+ */
+ public Mandant getMandant() {
+ return mandant;
+ }
+
+ /**
+ * Sets the value of the mandant property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Mandant }
+ *
+ */
+ public void setMandant(Mandant value) {
+ this.mandant = value;
+ }
+
+ /**
+ * Gets the value of the pcKonto property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getPcKonto() {
+ return pcKonto;
+ }
+
+ /**
+ * Sets the value of the pcKonto property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setPcKonto(String value) {
+ this.pcKonto = value;
+ }
+
+ /**
+ * Gets the value of the sprache property.
+ *
+ * @return
+ * possible object is
+ * {@link LanguageType }
+ *
+ */
+ public LanguageType getSprache() {
+ return sprache;
+ }
+
+ /**
+ * Sets the value of the sprache property.
+ *
+ * @param value
+ * allowed object is
+ * {@link LanguageType }
+ *
+ */
+ public void setSprache(LanguageType value) {
+ this.sprache = value;
+ }
+
+ /**
+ * Gets the value of the status property.
+ *
+ * @return
+ * possible object is
+ * {@link StatusType }
+ *
+ */
+ public StatusType getStatus() {
+ return status;
+ }
+
+ /**
+ * Sets the value of the status property.
+ *
+ * @param value
+ * allowed object is
+ * {@link StatusType }
+ *
+ */
+ public void setStatus(StatusType value) {
+ this.status = value;
+ }
+
+ /**
+ * Gets the value of the statusDatum property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getStatusDatum() {
+ return statusDatum;
+ }
+
+ /**
+ * Sets the value of the statusDatum property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setStatusDatum(XMLGregorianCalendar value) {
+ this.statusDatum = value;
+ }
+
+ /**
+ * Gets the value of the userIdCreated property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUserIdCreated() {
+ return userIdCreated;
+ }
+
+ /**
+ * Sets the value of the userIdCreated property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUserIdCreated(String value) {
+ this.userIdCreated = value;
+ }
+
+ /**
+ * Gets the value of the userIdModified property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUserIdModified() {
+ return userIdModified;
+ }
+
+ /**
+ * Sets the value of the userIdModified property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUserIdModified(String value) {
+ this.userIdModified = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerVertreter.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/HaftungArt.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/HaftungArt.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/HaftungArt.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,40 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for haftungArt.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * <simpleType name="haftungArt">
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * <enumeration value="SOLIDARHAFTUNG"/>
+ * <enumeration value="EINZELHAFTUNG"/>
+ * <enumeration value="UNBEKANNT"/>
+ * </restriction>
+ * </simpleType>
+ * </pre>
+ *
+ */
+@XmlType(name = "haftungArt")
+@XmlEnum
+public enum HaftungArt {
+
+ SOLIDARHAFTUNG,
+ EINZELHAFTUNG,
+ UNBEKANNT;
+
+ public String value() {
+ return name();
+ }
+
+ public static HaftungArt fromValue(String v) {
+ return valueOf(v);
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/HaftungArt.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/HerkunftReferenz.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/HerkunftReferenz.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/HerkunftReferenz.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,303 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for herkunftReferenz complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="herkunftReferenz">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="ausloesendeAnwendung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="ausloesendeStelleAutomatisch" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="ausloesendeStelleManuell" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="ausloesenderSachbearbManuell" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="ausloesenderSachbearbeiterautomatisch" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="glaeubigervertreter" type="{http://example.com}glaeubigerVertreter" minOccurs="0"/>
+ * <element name="herkunftReferenzId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ * <element name="mandant" type="{http://example.com}mandant" minOccurs="0"/>
+ * <element name="referenzAutomatisch" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="referenzManuell" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "herkunftReferenz", propOrder = {
+ "ausloesendeAnwendung",
+ "ausloesendeStelleAutomatisch",
+ "ausloesendeStelleManuell",
+ "ausloesenderSachbearbManuell",
+ "ausloesenderSachbearbeiterautomatisch",
+ "glaeubigervertreter",
+ "herkunftReferenzId",
+ "mandant",
+ "referenzAutomatisch",
+ "referenzManuell"
+})
+public class HerkunftReferenz {
+
+ protected String ausloesendeAnwendung;
+ protected String ausloesendeStelleAutomatisch;
+ protected String ausloesendeStelleManuell;
+ protected String ausloesenderSachbearbManuell;
+ protected String ausloesenderSachbearbeiterautomatisch;
+ protected GlaeubigerVertreter glaeubigervertreter;
+ protected Long herkunftReferenzId;
+ protected Mandant mandant;
+ protected String referenzAutomatisch;
+ protected String referenzManuell;
+
+ /**
+ * Gets the value of the ausloesendeAnwendung property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getAusloesendeAnwendung() {
+ return ausloesendeAnwendung;
+ }
+
+ /**
+ * Sets the value of the ausloesendeAnwendung property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setAusloesendeAnwendung(String value) {
+ this.ausloesendeAnwendung = value;
+ }
+
+ /**
+ * Gets the value of the ausloesendeStelleAutomatisch property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getAusloesendeStelleAutomatisch() {
+ return ausloesendeStelleAutomatisch;
+ }
+
+ /**
+ * Sets the value of the ausloesendeStelleAutomatisch property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setAusloesendeStelleAutomatisch(String value) {
+ this.ausloesendeStelleAutomatisch = value;
+ }
+
+ /**
+ * Gets the value of the ausloesendeStelleManuell property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getAusloesendeStelleManuell() {
+ return ausloesendeStelleManuell;
+ }
+
+ /**
+ * Sets the value of the ausloesendeStelleManuell property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setAusloesendeStelleManuell(String value) {
+ this.ausloesendeStelleManuell = value;
+ }
+
+ /**
+ * Gets the value of the ausloesenderSachbearbManuell property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getAusloesenderSachbearbManuell() {
+ return ausloesenderSachbearbManuell;
+ }
+
+ /**
+ * Sets the value of the ausloesenderSachbearbManuell property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setAusloesenderSachbearbManuell(String value) {
+ this.ausloesenderSachbearbManuell = value;
+ }
+
+ /**
+ * Gets the value of the ausloesenderSachbearbeiterautomatisch property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getAusloesenderSachbearbeiterautomatisch() {
+ return ausloesenderSachbearbeiterautomatisch;
+ }
+
+ /**
+ * Sets the value of the ausloesenderSachbearbeiterautomatisch property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setAusloesenderSachbearbeiterautomatisch(String value) {
+ this.ausloesenderSachbearbeiterautomatisch = value;
+ }
+
+ /**
+ * Gets the value of the glaeubigervertreter property.
+ *
+ * @return
+ * possible object is
+ * {@link GlaeubigerVertreter }
+ *
+ */
+ public GlaeubigerVertreter getGlaeubigervertreter() {
+ return glaeubigervertreter;
+ }
+
+ /**
+ * Sets the value of the glaeubigervertreter property.
+ *
+ * @param value
+ * allowed object is
+ * {@link GlaeubigerVertreter }
+ *
+ */
+ public void setGlaeubigervertreter(GlaeubigerVertreter value) {
+ this.glaeubigervertreter = value;
+ }
+
+ /**
+ * Gets the value of the herkunftReferenzId property.
+ *
+ * @return
+ * possible object is
+ * {@link Long }
+ *
+ */
+ public Long getHerkunftReferenzId() {
+ return herkunftReferenzId;
+ }
+
+ /**
+ * Sets the value of the herkunftReferenzId property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Long }
+ *
+ */
+ public void setHerkunftReferenzId(Long value) {
+ this.herkunftReferenzId = value;
+ }
+
+ /**
+ * Gets the value of the mandant property.
+ *
+ * @return
+ * possible object is
+ * {@link Mandant }
+ *
+ */
+ public Mandant getMandant() {
+ return mandant;
+ }
+
+ /**
+ * Sets the value of the mandant property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Mandant }
+ *
+ */
+ public void setMandant(Mandant value) {
+ this.mandant = value;
+ }
+
+ /**
+ * Gets the value of the referenzAutomatisch property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getReferenzAutomatisch() {
+ return referenzAutomatisch;
+ }
+
+ /**
+ * Sets the value of the referenzAutomatisch property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setReferenzAutomatisch(String value) {
+ this.referenzAutomatisch = value;
+ }
+
+ /**
+ * Gets the value of the referenzManuell property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getReferenzManuell() {
+ return referenzManuell;
+ }
+
+ /**
+ * Sets the value of the referenzManuell property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setReferenzManuell(String value) {
+ this.referenzManuell = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/HerkunftReferenz.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertGlaeubiger.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertGlaeubiger.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertGlaeubiger.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,60 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for insertGlaeubiger complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="insertGlaeubiger">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="arg0" type="{http://example.com}glaeubiger" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "insertGlaeubiger", propOrder = {
+ "arg0"
+})
+public class InsertGlaeubiger {
+
+ protected Glaeubiger arg0;
+
+ /**
+ * Gets the value of the arg0 property.
+ *
+ * @return
+ * possible object is
+ * {@link Glaeubiger }
+ *
+ */
+ public Glaeubiger getArg0() {
+ return arg0;
+ }
+
+ /**
+ * Sets the value of the arg0 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Glaeubiger }
+ *
+ */
+ public void setArg0(Glaeubiger value) {
+ this.arg0 = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertGlaeubiger.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertGlaeubigerResponse.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertGlaeubigerResponse.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertGlaeubigerResponse.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,62 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for insertGlaeubigerResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="insertGlaeubigerResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://example.com}glaeubigerResult" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "insertGlaeubigerResponse", propOrder = {
+ "_return"
+})
+public class InsertGlaeubigerResponse {
+
+ @XmlElement(name = "return")
+ protected GlaeubigerResult _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link GlaeubigerResult }
+ *
+ */
+ public GlaeubigerResult getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link GlaeubigerResult }
+ *
+ */
+ public void setReturn(GlaeubigerResult value) {
+ this._return = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertGlaeubigerResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandant.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandant.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandant.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,60 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for insertMandant complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="insertMandant">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="arg0" type="{http://example.com}mandant" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "insertMandant", propOrder = {
+ "arg0"
+})
+public class InsertMandant {
+
+ protected Mandant arg0;
+
+ /**
+ * Gets the value of the arg0 property.
+ *
+ * @return
+ * possible object is
+ * {@link Mandant }
+ *
+ */
+ public Mandant getArg0() {
+ return arg0;
+ }
+
+ /**
+ * Sets the value of the arg0 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Mandant }
+ *
+ */
+ public void setArg0(Mandant value) {
+ this.arg0 = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandant.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantResponse.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantResponse.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantResponse.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,62 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for insertMandantResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="insertMandantResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://example.com}mandantResult" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "insertMandantResponse", propOrder = {
+ "_return"
+})
+public class InsertMandantResponse {
+
+ @XmlElement(name = "return")
+ protected MandantResult _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link MandantResult }
+ *
+ */
+ public MandantResult getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link MandantResult }
+ *
+ */
+ public void setReturn(MandantResult value) {
+ this._return = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantUser.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantUser.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantUser.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,60 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for insertMandantUser complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="insertMandantUser">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="arg0" type="{http://example.com}mandantUser" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "insertMandantUser", propOrder = {
+ "arg0"
+})
+public class InsertMandantUser {
+
+ protected MandantUser arg0;
+
+ /**
+ * Gets the value of the arg0 property.
+ *
+ * @return
+ * possible object is
+ * {@link MandantUser }
+ *
+ */
+ public MandantUser getArg0() {
+ return arg0;
+ }
+
+ /**
+ * Sets the value of the arg0 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link MandantUser }
+ *
+ */
+ public void setArg0(MandantUser value) {
+ this.arg0 = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantUser.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantUserResponse.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantUserResponse.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantUserResponse.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,62 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for insertMandantUserResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="insertMandantUserResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://example.com}mandantUserResult" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "insertMandantUserResponse", propOrder = {
+ "_return"
+})
+public class InsertMandantUserResponse {
+
+ @XmlElement(name = "return")
+ protected MandantUserResult _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link MandantUserResult }
+ *
+ */
+ public MandantUserResult getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link MandantUserResult }
+ *
+ */
+ public void setReturn(MandantUserResult value) {
+ this._return = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantUserResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertNatPerson.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertNatPerson.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertNatPerson.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,60 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for insertNatPerson complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="insertNatPerson">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="arg0" type="{http://example.com}natuerlichePerson" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "insertNatPerson", propOrder = {
+ "arg0"
+})
+public class InsertNatPerson {
+
+ protected NatuerlichePerson arg0;
+
+ /**
+ * Gets the value of the arg0 property.
+ *
+ * @return
+ * possible object is
+ * {@link NatuerlichePerson }
+ *
+ */
+ public NatuerlichePerson getArg0() {
+ return arg0;
+ }
+
+ /**
+ * Sets the value of the arg0 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link NatuerlichePerson }
+ *
+ */
+ public void setArg0(NatuerlichePerson value) {
+ this.arg0 = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertNatPerson.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertNatPersonResponse.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertNatPersonResponse.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertNatPersonResponse.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,62 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for insertNatPersonResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="insertNatPersonResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://example.com}natPersonResult" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "insertNatPersonResponse", propOrder = {
+ "_return"
+})
+public class InsertNatPersonResponse {
+
+ @XmlElement(name = "return")
+ protected NatPersonResult _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link NatPersonResult }
+ *
+ */
+ public NatPersonResult getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link NatPersonResult }
+ *
+ */
+ public void setReturn(NatPersonResult value) {
+ this._return = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertNatPersonResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertUser.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertUser.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertUser.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,60 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for insertUser complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="insertUser">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="arg0" type="{http://example.com}user" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "insertUser", propOrder = {
+ "arg0"
+})
+public class InsertUser {
+
+ protected User arg0;
+
+ /**
+ * Gets the value of the arg0 property.
+ *
+ * @return
+ * possible object is
+ * {@link User }
+ *
+ */
+ public User getArg0() {
+ return arg0;
+ }
+
+ /**
+ * Sets the value of the arg0 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link User }
+ *
+ */
+ public void setArg0(User value) {
+ this.arg0 = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertUser.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertUserResponse.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertUserResponse.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertUserResponse.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,62 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for insertUserResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="insertUserResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://example.com}userResult" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "insertUserResponse", propOrder = {
+ "_return"
+})
+public class InsertUserResponse {
+
+ @XmlElement(name = "return")
+ protected UserResult _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link UserResult }
+ *
+ */
+ public UserResult getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link UserResult }
+ *
+ */
+ public void setReturn(UserResult value) {
+ this._return = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertUserResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/KantonType.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/KantonType.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/KantonType.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,86 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for kantonType.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * <simpleType name="kantonType">
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * <enumeration value="JU"/>
+ * <enumeration value="GE"/>
+ * <enumeration value="NE"/>
+ * <enumeration value="VS"/>
+ * <enumeration value="VD"/>
+ * <enumeration value="TI"/>
+ * <enumeration value="TG"/>
+ * <enumeration value="AG"/>
+ * <enumeration value="GR"/>
+ * <enumeration value="SG"/>
+ * <enumeration value="AI"/>
+ * <enumeration value="AR"/>
+ * <enumeration value="SH"/>
+ * <enumeration value="BL"/>
+ * <enumeration value="BS"/>
+ * <enumeration value="SO"/>
+ * <enumeration value="FR"/>
+ * <enumeration value="ZG"/>
+ * <enumeration value="GL"/>
+ * <enumeration value="NW"/>
+ * <enumeration value="OW"/>
+ * <enumeration value="SZ"/>
+ * <enumeration value="UR"/>
+ * <enumeration value="LU"/>
+ * <enumeration value="BE"/>
+ * <enumeration value="ZH"/>
+ * </restriction>
+ * </simpleType>
+ * </pre>
+ *
+ */
+@XmlType(name = "kantonType")
+@XmlEnum
+public enum KantonType {
+
+ JU,
+ GE,
+ NE,
+ VS,
+ VD,
+ TI,
+ TG,
+ AG,
+ GR,
+ SG,
+ AI,
+ AR,
+ SH,
+ BL,
+ BS,
+ SO,
+ FR,
+ ZG,
+ GL,
+ NW,
+ OW,
+ SZ,
+ UR,
+ LU,
+ BE,
+ ZH;
+
+ public String value() {
+ return name();
+ }
+
+ public static KantonType fromValue(String v) {
+ return valueOf(v);
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/KantonType.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/LanguageType.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/LanguageType.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/LanguageType.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,40 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for languageType.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * <simpleType name="languageType">
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * <enumeration value="IT"/>
+ * <enumeration value="FR"/>
+ * <enumeration value="DE"/>
+ * </restriction>
+ * </simpleType>
+ * </pre>
+ *
+ */
+@XmlType(name = "languageType")
+@XmlEnum
+public enum LanguageType {
+
+ IT,
+ FR,
+ DE;
+
+ public String value() {
+ return name();
+ }
+
+ public static LanguageType fromValue(String v) {
+ return valueOf(v);
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/LanguageType.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Mandant.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Mandant.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Mandant.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,936 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+
+/**
+ * <p>Java class for mandant complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="mandant">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="adminEmail" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="adresse" type="{http://example.com}adresse" minOccurs="0"/>
+ * <element name="dateCreated" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="dateModified" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="ekFachApplikation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="ekKundenNr" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="ekTeilnehmer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="esrAnschrift1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="esrAnschrift2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="esrAnschrift3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="esrAnschrift4" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="esrBankAnschrift1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="esrBankAnschrift2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="esrBankAnschrift3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="esrKonto" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="ibanNr" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="level_0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="level_1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="level_2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="level_3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="level_4" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="level_5" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="logo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="mandantId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ * <element name="mandantName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="mandantName1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="mandantName2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="sprache" type="{http://example.com}languageType" minOccurs="0"/>
+ * <element name="status" type="{http://example.com}statusType" minOccurs="0"/>
+ * <element name="statusDatum" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="topMandant" type="{http://example.com}mandant" minOccurs="0"/>
+ * <element name="userIdCreated" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="userIdModified" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "mandant", propOrder = {
+ "adminEmail",
+ "adresse",
+ "dateCreated",
+ "dateModified",
+ "ekFachApplikation",
+ "ekKundenNr",
+ "ekTeilnehmer",
+ "esrAnschrift1",
+ "esrAnschrift2",
+ "esrAnschrift3",
+ "esrAnschrift4",
+ "esrBankAnschrift1",
+ "esrBankAnschrift2",
+ "esrBankAnschrift3",
+ "esrKonto",
+ "ibanNr",
+ "level0",
+ "level1",
+ "level2",
+ "level3",
+ "level4",
+ "level5",
+ "logo",
+ "mandantId",
+ "mandantName",
+ "mandantName1",
+ "mandantName2",
+ "sprache",
+ "status",
+ "statusDatum",
+ "topMandant",
+ "userIdCreated",
+ "userIdModified"
+})
+public class Mandant {
+
+ protected String adminEmail;
+ protected Adresse adresse;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar dateCreated;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar dateModified;
+ protected String ekFachApplikation;
+ protected String ekKundenNr;
+ protected String ekTeilnehmer;
+ protected String esrAnschrift1;
+ protected String esrAnschrift2;
+ protected String esrAnschrift3;
+ protected String esrAnschrift4;
+ protected String esrBankAnschrift1;
+ protected String esrBankAnschrift2;
+ protected String esrBankAnschrift3;
+ protected String esrKonto;
+ protected String ibanNr;
+ @XmlElement(name = "level_0")
+ protected String level0;
+ @XmlElement(name = "level_1")
+ protected String level1;
+ @XmlElement(name = "level_2")
+ protected String level2;
+ @XmlElement(name = "level_3")
+ protected String level3;
+ @XmlElement(name = "level_4")
+ protected String level4;
+ @XmlElement(name = "level_5")
+ protected String level5;
+ protected String logo;
+ protected Long mandantId;
+ protected String mandantName;
+ protected String mandantName1;
+ protected String mandantName2;
+ protected LanguageType sprache;
+ protected StatusType status;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar statusDatum;
+ protected Mandant topMandant;
+ protected String userIdCreated;
+ protected String userIdModified;
+
+ /**
+ * Gets the value of the adminEmail property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getAdminEmail() {
+ return adminEmail;
+ }
+
+ /**
+ * Sets the value of the adminEmail property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setAdminEmail(String value) {
+ this.adminEmail = value;
+ }
+
+ /**
+ * Gets the value of the adresse property.
+ *
+ * @return
+ * possible object is
+ * {@link Adresse }
+ *
+ */
+ public Adresse getAdresse() {
+ return adresse;
+ }
+
+ /**
+ * Sets the value of the adresse property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Adresse }
+ *
+ */
+ public void setAdresse(Adresse value) {
+ this.adresse = value;
+ }
+
+ /**
+ * Gets the value of the dateCreated property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getDateCreated() {
+ return dateCreated;
+ }
+
+ /**
+ * Sets the value of the dateCreated property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setDateCreated(XMLGregorianCalendar value) {
+ this.dateCreated = value;
+ }
+
+ /**
+ * Gets the value of the dateModified property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getDateModified() {
+ return dateModified;
+ }
+
+ /**
+ * Sets the value of the dateModified property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setDateModified(XMLGregorianCalendar value) {
+ this.dateModified = value;
+ }
+
+ /**
+ * Gets the value of the ekFachApplikation property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getEkFachApplikation() {
+ return ekFachApplikation;
+ }
+
+ /**
+ * Sets the value of the ekFachApplikation property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setEkFachApplikation(String value) {
+ this.ekFachApplikation = value;
+ }
+
+ /**
+ * Gets the value of the ekKundenNr property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getEkKundenNr() {
+ return ekKundenNr;
+ }
+
+ /**
+ * Sets the value of the ekKundenNr property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setEkKundenNr(String value) {
+ this.ekKundenNr = value;
+ }
+
+ /**
+ * Gets the value of the ekTeilnehmer property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getEkTeilnehmer() {
+ return ekTeilnehmer;
+ }
+
+ /**
+ * Sets the value of the ekTeilnehmer property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setEkTeilnehmer(String value) {
+ this.ekTeilnehmer = value;
+ }
+
+ /**
+ * Gets the value of the esrAnschrift1 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getEsrAnschrift1() {
+ return esrAnschrift1;
+ }
+
+ /**
+ * Sets the value of the esrAnschrift1 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setEsrAnschrift1(String value) {
+ this.esrAnschrift1 = value;
+ }
+
+ /**
+ * Gets the value of the esrAnschrift2 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getEsrAnschrift2() {
+ return esrAnschrift2;
+ }
+
+ /**
+ * Sets the value of the esrAnschrift2 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setEsrAnschrift2(String value) {
+ this.esrAnschrift2 = value;
+ }
+
+ /**
+ * Gets the value of the esrAnschrift3 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getEsrAnschrift3() {
+ return esrAnschrift3;
+ }
+
+ /**
+ * Sets the value of the esrAnschrift3 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setEsrAnschrift3(String value) {
+ this.esrAnschrift3 = value;
+ }
+
+ /**
+ * Gets the value of the esrAnschrift4 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getEsrAnschrift4() {
+ return esrAnschrift4;
+ }
+
+ /**
+ * Sets the value of the esrAnschrift4 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setEsrAnschrift4(String value) {
+ this.esrAnschrift4 = value;
+ }
+
+ /**
+ * Gets the value of the esrBankAnschrift1 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getEsrBankAnschrift1() {
+ return esrBankAnschrift1;
+ }
+
+ /**
+ * Sets the value of the esrBankAnschrift1 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setEsrBankAnschrift1(String value) {
+ this.esrBankAnschrift1 = value;
+ }
+
+ /**
+ * Gets the value of the esrBankAnschrift2 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getEsrBankAnschrift2() {
+ return esrBankAnschrift2;
+ }
+
+ /**
+ * Sets the value of the esrBankAnschrift2 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setEsrBankAnschrift2(String value) {
+ this.esrBankAnschrift2 = value;
+ }
+
+ /**
+ * Gets the value of the esrBankAnschrift3 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getEsrBankAnschrift3() {
+ return esrBankAnschrift3;
+ }
+
+ /**
+ * Sets the value of the esrBankAnschrift3 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setEsrBankAnschrift3(String value) {
+ this.esrBankAnschrift3 = value;
+ }
+
+ /**
+ * Gets the value of the esrKonto property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getEsrKonto() {
+ return esrKonto;
+ }
+
+ /**
+ * Sets the value of the esrKonto property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setEsrKonto(String value) {
+ this.esrKonto = value;
+ }
+
+ /**
+ * Gets the value of the ibanNr property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getIbanNr() {
+ return ibanNr;
+ }
+
+ /**
+ * Sets the value of the ibanNr property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setIbanNr(String value) {
+ this.ibanNr = value;
+ }
+
+ /**
+ * Gets the value of the level0 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getLevel0() {
+ return level0;
+ }
+
+ /**
+ * Sets the value of the level0 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setLevel0(String value) {
+ this.level0 = value;
+ }
+
+ /**
+ * Gets the value of the level1 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getLevel1() {
+ return level1;
+ }
+
+ /**
+ * Sets the value of the level1 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setLevel1(String value) {
+ this.level1 = value;
+ }
+
+ /**
+ * Gets the value of the level2 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getLevel2() {
+ return level2;
+ }
+
+ /**
+ * Sets the value of the level2 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setLevel2(String value) {
+ this.level2 = value;
+ }
+
+ /**
+ * Gets the value of the level3 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getLevel3() {
+ return level3;
+ }
+
+ /**
+ * Sets the value of the level3 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setLevel3(String value) {
+ this.level3 = value;
+ }
+
+ /**
+ * Gets the value of the level4 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getLevel4() {
+ return level4;
+ }
+
+ /**
+ * Sets the value of the level4 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setLevel4(String value) {
+ this.level4 = value;
+ }
+
+ /**
+ * Gets the value of the level5 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getLevel5() {
+ return level5;
+ }
+
+ /**
+ * Sets the value of the level5 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setLevel5(String value) {
+ this.level5 = value;
+ }
+
+ /**
+ * Gets the value of the logo property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getLogo() {
+ return logo;
+ }
+
+ /**
+ * Sets the value of the logo property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setLogo(String value) {
+ this.logo = value;
+ }
+
+ /**
+ * Gets the value of the mandantId property.
+ *
+ * @return
+ * possible object is
+ * {@link Long }
+ *
+ */
+ public Long getMandantId() {
+ return mandantId;
+ }
+
+ /**
+ * Sets the value of the mandantId property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Long }
+ *
+ */
+ public void setMandantId(Long value) {
+ this.mandantId = value;
+ }
+
+ /**
+ * Gets the value of the mandantName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getMandantName() {
+ return mandantName;
+ }
+
+ /**
+ * Sets the value of the mandantName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setMandantName(String value) {
+ this.mandantName = value;
+ }
+
+ /**
+ * Gets the value of the mandantName1 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getMandantName1() {
+ return mandantName1;
+ }
+
+ /**
+ * Sets the value of the mandantName1 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setMandantName1(String value) {
+ this.mandantName1 = value;
+ }
+
+ /**
+ * Gets the value of the mandantName2 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getMandantName2() {
+ return mandantName2;
+ }
+
+ /**
+ * Sets the value of the mandantName2 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setMandantName2(String value) {
+ this.mandantName2 = value;
+ }
+
+ /**
+ * Gets the value of the sprache property.
+ *
+ * @return
+ * possible object is
+ * {@link LanguageType }
+ *
+ */
+ public LanguageType getSprache() {
+ return sprache;
+ }
+
+ /**
+ * Sets the value of the sprache property.
+ *
+ * @param value
+ * allowed object is
+ * {@link LanguageType }
+ *
+ */
+ public void setSprache(LanguageType value) {
+ this.sprache = value;
+ }
+
+ /**
+ * Gets the value of the status property.
+ *
+ * @return
+ * possible object is
+ * {@link StatusType }
+ *
+ */
+ public StatusType getStatus() {
+ return status;
+ }
+
+ /**
+ * Sets the value of the status property.
+ *
+ * @param value
+ * allowed object is
+ * {@link StatusType }
+ *
+ */
+ public void setStatus(StatusType value) {
+ this.status = value;
+ }
+
+ /**
+ * Gets the value of the statusDatum property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getStatusDatum() {
+ return statusDatum;
+ }
+
+ /**
+ * Sets the value of the statusDatum property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setStatusDatum(XMLGregorianCalendar value) {
+ this.statusDatum = value;
+ }
+
+ /**
+ * Gets the value of the topMandant property.
+ *
+ * @return
+ * possible object is
+ * {@link Mandant }
+ *
+ */
+ public Mandant getTopMandant() {
+ return topMandant;
+ }
+
+ /**
+ * Sets the value of the topMandant property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Mandant }
+ *
+ */
+ public void setTopMandant(Mandant value) {
+ this.topMandant = value;
+ }
+
+ /**
+ * Gets the value of the userIdCreated property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUserIdCreated() {
+ return userIdCreated;
+ }
+
+ /**
+ * Sets the value of the userIdCreated property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUserIdCreated(String value) {
+ this.userIdCreated = value;
+ }
+
+ /**
+ * Gets the value of the userIdModified property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUserIdModified() {
+ return userIdModified;
+ }
+
+ /**
+ * Sets the value of the userIdModified property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUserIdModified(String value) {
+ this.userIdModified = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Mandant.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantArrayResult.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantArrayResult.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantArrayResult.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,96 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for mandantArrayResult complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="mandantArrayResult">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="mandantArray" type="{http://example.com}mandant" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="serviceStatus" type="{http://example.com}serviceStatus" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "mandantArrayResult", propOrder = {
+ "mandantArray",
+ "serviceStatus"
+})
+public class MandantArrayResult {
+
+ @XmlElement(nillable = true)
+ protected List<Mandant> mandantArray;
+ protected ServiceStatus serviceStatus;
+
+ /**
+ * Gets the value of the mandantArray property.
+ *
+ * <p>
+ * 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 <CODE>set</CODE> method for the mandantArray property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getMandantArray().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link Mandant }
+ *
+ *
+ */
+ public List<Mandant> getMandantArray() {
+ if (mandantArray == null) {
+ mandantArray = new ArrayList<Mandant>();
+ }
+ return this.mandantArray;
+ }
+
+ /**
+ * Gets the value of the serviceStatus property.
+ *
+ * @return
+ * possible object is
+ * {@link ServiceStatus }
+ *
+ */
+ public ServiceStatus getServiceStatus() {
+ return serviceStatus;
+ }
+
+ /**
+ * Sets the value of the serviceStatus property.
+ *
+ * @param value
+ * allowed object is
+ * {@link ServiceStatus }
+ *
+ */
+ public void setServiceStatus(ServiceStatus value) {
+ this.serviceStatus = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantArrayResult.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantResult.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantResult.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantResult.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,123 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for mandantResult complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="mandantResult">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="errorList" type="{http://www.w3.org/2001/XMLSchema}anyType" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="mandant" type="{http://example.com}mandant" minOccurs="0"/>
+ * <element name="serviceStatus" type="{http://example.com}serviceStatus" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "mandantResult", propOrder = {
+ "errorList",
+ "mandant",
+ "serviceStatus"
+})
+public class MandantResult {
+
+ @XmlElement(nillable = true)
+ protected List<Object> errorList;
+ protected Mandant mandant;
+ protected ServiceStatus serviceStatus;
+
+ /**
+ * Gets the value of the errorList property.
+ *
+ * <p>
+ * 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 <CODE>set</CODE> method for the errorList property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getErrorList().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link Object }
+ *
+ *
+ */
+ public List<Object> getErrorList() {
+ if (errorList == null) {
+ errorList = new ArrayList<Object>();
+ }
+ return this.errorList;
+ }
+
+ /**
+ * Gets the value of the mandant property.
+ *
+ * @return
+ * possible object is
+ * {@link Mandant }
+ *
+ */
+ public Mandant getMandant() {
+ return mandant;
+ }
+
+ /**
+ * Sets the value of the mandant property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Mandant }
+ *
+ */
+ public void setMandant(Mandant value) {
+ this.mandant = value;
+ }
+
+ /**
+ * Gets the value of the serviceStatus property.
+ *
+ * @return
+ * possible object is
+ * {@link ServiceStatus }
+ *
+ */
+ public ServiceStatus getServiceStatus() {
+ return serviceStatus;
+ }
+
+ /**
+ * Sets the value of the serviceStatus property.
+ *
+ * @param value
+ * allowed object is
+ * {@link ServiceStatus }
+ *
+ */
+ public void setServiceStatus(ServiceStatus value) {
+ this.serviceStatus = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantResult.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUser.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUser.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUser.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,447 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+
+/**
+ * <p>Java class for mandantUser complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="mandantUser">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="dateCreated" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="dateModified" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="EMail" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="fax" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="funktion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="gueltigBis" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="gueltigVon" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="mandant" type="{http://example.com}mandant" minOccurs="0"/>
+ * <element name="status" type="{http://example.com}statusType" minOccurs="0"/>
+ * <element name="statusDatum" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="telefon" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="unterschrift" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="user" type="{http://example.com}user" minOccurs="0"/>
+ * <element name="userIdCreated" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="userIdModified" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "mandantUser", propOrder = {
+ "dateCreated",
+ "dateModified",
+ "eMail",
+ "fax",
+ "funktion",
+ "gueltigBis",
+ "gueltigVon",
+ "mandant",
+ "status",
+ "statusDatum",
+ "telefon",
+ "unterschrift",
+ "user",
+ "userIdCreated",
+ "userIdModified"
+})
+public class MandantUser {
+
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar dateCreated;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar dateModified;
+ @XmlElement(name = "EMail")
+ protected String eMail;
+ protected String fax;
+ protected String funktion;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar gueltigBis;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar gueltigVon;
+ protected Mandant mandant;
+ protected StatusType status;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar statusDatum;
+ protected String telefon;
+ protected String unterschrift;
+ protected User user;
+ protected String userIdCreated;
+ protected String userIdModified;
+
+ /**
+ * Gets the value of the dateCreated property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getDateCreated() {
+ return dateCreated;
+ }
+
+ /**
+ * Sets the value of the dateCreated property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setDateCreated(XMLGregorianCalendar value) {
+ this.dateCreated = value;
+ }
+
+ /**
+ * Gets the value of the dateModified property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getDateModified() {
+ return dateModified;
+ }
+
+ /**
+ * Sets the value of the dateModified property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setDateModified(XMLGregorianCalendar value) {
+ this.dateModified = value;
+ }
+
+ /**
+ * Gets the value of the eMail property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getEMail() {
+ return eMail;
+ }
+
+ /**
+ * Sets the value of the eMail property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setEMail(String value) {
+ this.eMail = value;
+ }
+
+ /**
+ * Gets the value of the fax property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getFax() {
+ return fax;
+ }
+
+ /**
+ * Sets the value of the fax property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setFax(String value) {
+ this.fax = value;
+ }
+
+ /**
+ * Gets the value of the funktion property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getFunktion() {
+ return funktion;
+ }
+
+ /**
+ * Sets the value of the funktion property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setFunktion(String value) {
+ this.funktion = value;
+ }
+
+ /**
+ * Gets the value of the gueltigBis property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getGueltigBis() {
+ return gueltigBis;
+ }
+
+ /**
+ * Sets the value of the gueltigBis property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setGueltigBis(XMLGregorianCalendar value) {
+ this.gueltigBis = value;
+ }
+
+ /**
+ * Gets the value of the gueltigVon property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getGueltigVon() {
+ return gueltigVon;
+ }
+
+ /**
+ * Sets the value of the gueltigVon property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setGueltigVon(XMLGregorianCalendar value) {
+ this.gueltigVon = value;
+ }
+
+ /**
+ * Gets the value of the mandant property.
+ *
+ * @return
+ * possible object is
+ * {@link Mandant }
+ *
+ */
+ public Mandant getMandant() {
+ return mandant;
+ }
+
+ /**
+ * Sets the value of the mandant property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Mandant }
+ *
+ */
+ public void setMandant(Mandant value) {
+ this.mandant = value;
+ }
+
+ /**
+ * Gets the value of the status property.
+ *
+ * @return
+ * possible object is
+ * {@link StatusType }
+ *
+ */
+ public StatusType getStatus() {
+ return status;
+ }
+
+ /**
+ * Sets the value of the status property.
+ *
+ * @param value
+ * allowed object is
+ * {@link StatusType }
+ *
+ */
+ public void setStatus(StatusType value) {
+ this.status = value;
+ }
+
+ /**
+ * Gets the value of the statusDatum property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getStatusDatum() {
+ return statusDatum;
+ }
+
+ /**
+ * Sets the value of the statusDatum property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setStatusDatum(XMLGregorianCalendar value) {
+ this.statusDatum = value;
+ }
+
+ /**
+ * Gets the value of the telefon property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getTelefon() {
+ return telefon;
+ }
+
+ /**
+ * Sets the value of the telefon property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setTelefon(String value) {
+ this.telefon = value;
+ }
+
+ /**
+ * Gets the value of the unterschrift property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUnterschrift() {
+ return unterschrift;
+ }
+
+ /**
+ * Sets the value of the unterschrift property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUnterschrift(String value) {
+ this.unterschrift = value;
+ }
+
+ /**
+ * Gets the value of the user property.
+ *
+ * @return
+ * possible object is
+ * {@link User }
+ *
+ */
+ public User getUser() {
+ return user;
+ }
+
+ /**
+ * Sets the value of the user property.
+ *
+ * @param value
+ * allowed object is
+ * {@link User }
+ *
+ */
+ public void setUser(User value) {
+ this.user = value;
+ }
+
+ /**
+ * Gets the value of the userIdCreated property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUserIdCreated() {
+ return userIdCreated;
+ }
+
+ /**
+ * Sets the value of the userIdCreated property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUserIdCreated(String value) {
+ this.userIdCreated = value;
+ }
+
+ /**
+ * Gets the value of the userIdModified property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUserIdModified() {
+ return userIdModified;
+ }
+
+ /**
+ * Sets the value of the userIdModified property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUserIdModified(String value) {
+ this.userIdModified = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUser.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUserArrayResult.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUserArrayResult.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUserArrayResult.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,96 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for mandantUserArrayResult complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="mandantUserArrayResult">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="mandantUser" type="{http://example.com}mandantUser" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="serviceStatus" type="{http://example.com}serviceStatus" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "mandantUserArrayResult", propOrder = {
+ "mandantUser",
+ "serviceStatus"
+})
+public class MandantUserArrayResult {
+
+ @XmlElement(nillable = true)
+ protected List<MandantUser> mandantUser;
+ protected ServiceStatus serviceStatus;
+
+ /**
+ * Gets the value of the mandantUser property.
+ *
+ * <p>
+ * 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 <CODE>set</CODE> method for the mandantUser property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getMandantUser().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link MandantUser }
+ *
+ *
+ */
+ public List<MandantUser> getMandantUser() {
+ if (mandantUser == null) {
+ mandantUser = new ArrayList<MandantUser>();
+ }
+ return this.mandantUser;
+ }
+
+ /**
+ * Gets the value of the serviceStatus property.
+ *
+ * @return
+ * possible object is
+ * {@link ServiceStatus }
+ *
+ */
+ public ServiceStatus getServiceStatus() {
+ return serviceStatus;
+ }
+
+ /**
+ * Sets the value of the serviceStatus property.
+ *
+ * @param value
+ * allowed object is
+ * {@link ServiceStatus }
+ *
+ */
+ public void setServiceStatus(ServiceStatus value) {
+ this.serviceStatus = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUserArrayResult.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUserResult.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUserResult.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUserResult.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,87 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for mandantUserResult complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="mandantUserResult">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="mandantUser" type="{http://example.com}mandantUser" minOccurs="0"/>
+ * <element name="serviceStatus" type="{http://example.com}serviceStatus" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "mandantUserResult", propOrder = {
+ "mandantUser",
+ "serviceStatus"
+})
+public class MandantUserResult {
+
+ protected MandantUser mandantUser;
+ protected ServiceStatus serviceStatus;
+
+ /**
+ * Gets the value of the mandantUser property.
+ *
+ * @return
+ * possible object is
+ * {@link MandantUser }
+ *
+ */
+ public MandantUser getMandantUser() {
+ return mandantUser;
+ }
+
+ /**
+ * Sets the value of the mandantUser property.
+ *
+ * @param value
+ * allowed object is
+ * {@link MandantUser }
+ *
+ */
+ public void setMandantUser(MandantUser value) {
+ this.mandantUser = value;
+ }
+
+ /**
+ * Gets the value of the serviceStatus property.
+ *
+ * @return
+ * possible object is
+ * {@link ServiceStatus }
+ *
+ */
+ public ServiceStatus getServiceStatus() {
+ return serviceStatus;
+ }
+
+ /**
+ * Sets the value of the serviceStatus property.
+ *
+ * @param value
+ * allowed object is
+ * {@link ServiceStatus }
+ *
+ */
+ public void setServiceStatus(ServiceStatus value) {
+ this.serviceStatus = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUserResult.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NatPersonResult.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NatPersonResult.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NatPersonResult.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,123 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for natPersonResult complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="natPersonResult">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="errorList" type="{http://www.w3.org/2001/XMLSchema}anyType" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="natPerson" type="{http://example.com}natuerlichePerson" minOccurs="0"/>
+ * <element name="serviceStatus" type="{http://example.com}serviceStatus" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "natPersonResult", propOrder = {
+ "errorList",
+ "natPerson",
+ "serviceStatus"
+})
+public class NatPersonResult {
+
+ @XmlElement(nillable = true)
+ protected List<Object> errorList;
+ protected NatuerlichePerson natPerson;
+ protected ServiceStatus serviceStatus;
+
+ /**
+ * Gets the value of the errorList property.
+ *
+ * <p>
+ * 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 <CODE>set</CODE> method for the errorList property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getErrorList().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link Object }
+ *
+ *
+ */
+ public List<Object> getErrorList() {
+ if (errorList == null) {
+ errorList = new ArrayList<Object>();
+ }
+ return this.errorList;
+ }
+
+ /**
+ * Gets the value of the natPerson property.
+ *
+ * @return
+ * possible object is
+ * {@link NatuerlichePerson }
+ *
+ */
+ public NatuerlichePerson getNatPerson() {
+ return natPerson;
+ }
+
+ /**
+ * Sets the value of the natPerson property.
+ *
+ * @param value
+ * allowed object is
+ * {@link NatuerlichePerson }
+ *
+ */
+ public void setNatPerson(NatuerlichePerson value) {
+ this.natPerson = value;
+ }
+
+ /**
+ * Gets the value of the serviceStatus property.
+ *
+ * @return
+ * possible object is
+ * {@link ServiceStatus }
+ *
+ */
+ public ServiceStatus getServiceStatus() {
+ return serviceStatus;
+ }
+
+ /**
+ * Sets the value of the serviceStatus property.
+ *
+ * @param value
+ * allowed object is
+ * {@link ServiceStatus }
+ *
+ */
+ public void setServiceStatus(ServiceStatus value) {
+ this.serviceStatus = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NatPersonResult.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Nationalitaet.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Nationalitaet.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Nationalitaet.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,168 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for nationalitaet complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="nationalitaet">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="iso2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="iso3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="landName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="nationalitaetId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="tcsCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "nationalitaet", propOrder = {
+ "iso2",
+ "iso3",
+ "landName",
+ "nationalitaetId",
+ "tcsCode"
+})
+public class Nationalitaet {
+
+ protected String iso2;
+ protected String iso3;
+ protected String landName;
+ protected String nationalitaetId;
+ protected String tcsCode;
+
+ /**
+ * Gets the value of the iso2 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getIso2() {
+ return iso2;
+ }
+
+ /**
+ * Sets the value of the iso2 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setIso2(String value) {
+ this.iso2 = value;
+ }
+
+ /**
+ * Gets the value of the iso3 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getIso3() {
+ return iso3;
+ }
+
+ /**
+ * Sets the value of the iso3 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setIso3(String value) {
+ this.iso3 = value;
+ }
+
+ /**
+ * Gets the value of the landName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getLandName() {
+ return landName;
+ }
+
+ /**
+ * Sets the value of the landName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setLandName(String value) {
+ this.landName = value;
+ }
+
+ /**
+ * Gets the value of the nationalitaetId property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getNationalitaetId() {
+ return nationalitaetId;
+ }
+
+ /**
+ * Sets the value of the nationalitaetId property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setNationalitaetId(String value) {
+ this.nationalitaetId = value;
+ }
+
+ /**
+ * Gets the value of the tcsCode property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getTcsCode() {
+ return tcsCode;
+ }
+
+ /**
+ * Sets the value of the tcsCode property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setTcsCode(String value) {
+ this.tcsCode = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Nationalitaet.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NationalitaetStatus.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NationalitaetStatus.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NationalitaetStatus.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,40 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for nationalitaetStatus.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * <simpleType name="nationalitaetStatus">
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * <enumeration value="INAKTIV"/>
+ * <enumeration value="AKTIV"/>
+ * <enumeration value="UNBEKANNT"/>
+ * </restriction>
+ * </simpleType>
+ * </pre>
+ *
+ */
+@XmlType(name = "nationalitaetStatus")
+@XmlEnum
+public enum NationalitaetStatus {
+
+ INAKTIV,
+ AKTIV,
+ UNBEKANNT;
+
+ public String value() {
+ return name();
+ }
+
+ public static NationalitaetStatus fromValue(String v) {
+ return valueOf(v);
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NationalitaetStatus.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NatuerlichePerson.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NatuerlichePerson.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NatuerlichePerson.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,497 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+
+/**
+ * <p>Java class for natuerlichePerson complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="natuerlichePerson">
+ * <complexContent>
+ * <extension base="{http://example.com}person">
+ * <sequence>
+ * <element name="aliasName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="allianzName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="amtlicherName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="anredeCode" type="{http://example.com}anredeCode" minOccurs="0"/>
+ * <element name="geburtsDatum" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="gesetzlicherVertreter" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ * <element name="heimatOrt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="kanton" type="{http://example.com}kantonType" minOccurs="0"/>
+ * <element name="landKurzname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="ledigenName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="nationalitaet" type="{http://example.com}nationalitaet" minOccurs="0"/>
+ * <element name="nationalitaetStatus" type="{http://example.com}nationalitaetStatus" minOccurs="0"/>
+ * <element name="rufname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="sexType" type="{http://example.com}statusType" minOccurs="0"/>
+ * <element name="titel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="todesDatum" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="vorname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </extension>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "natuerlichePerson", propOrder = {
+ "aliasName",
+ "allianzName",
+ "amtlicherName",
+ "anredeCode",
+ "geburtsDatum",
+ "gesetzlicherVertreter",
+ "heimatOrt",
+ "kanton",
+ "landKurzname",
+ "ledigenName",
+ "nationalitaet",
+ "nationalitaetStatus",
+ "rufname",
+ "sexType",
+ "titel",
+ "todesDatum",
+ "vorname"
+})
+public class NatuerlichePerson
+ extends Person
+{
+
+ protected String aliasName;
+ protected String allianzName;
+ protected String amtlicherName;
+ protected AnredeCode anredeCode;
+ protected String geburtsDatum;
+ protected Boolean gesetzlicherVertreter;
+ protected String heimatOrt;
+ protected KantonType kanton;
+ protected String landKurzname;
+ protected String ledigenName;
+ protected Nationalitaet nationalitaet;
+ protected NationalitaetStatus nationalitaetStatus;
+ protected String rufname;
+ protected StatusType sexType;
+ protected String titel;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar todesDatum;
+ protected String vorname;
+
+ /**
+ * Gets the value of the aliasName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getAliasName() {
+ return aliasName;
+ }
+
+ /**
+ * Sets the value of the aliasName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setAliasName(String value) {
+ this.aliasName = value;
+ }
+
+ /**
+ * Gets the value of the allianzName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getAllianzName() {
+ return allianzName;
+ }
+
+ /**
+ * Sets the value of the allianzName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setAllianzName(String value) {
+ this.allianzName = value;
+ }
+
+ /**
+ * Gets the value of the amtlicherName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getAmtlicherName() {
+ return amtlicherName;
+ }
+
+ /**
+ * Sets the value of the amtlicherName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setAmtlicherName(String value) {
+ this.amtlicherName = value;
+ }
+
+ /**
+ * Gets the value of the anredeCode property.
+ *
+ * @return
+ * possible object is
+ * {@link AnredeCode }
+ *
+ */
+ public AnredeCode getAnredeCode() {
+ return anredeCode;
+ }
+
+ /**
+ * Sets the value of the anredeCode property.
+ *
+ * @param value
+ * allowed object is
+ * {@link AnredeCode }
+ *
+ */
+ public void setAnredeCode(AnredeCode value) {
+ this.anredeCode = value;
+ }
+
+ /**
+ * Gets the value of the geburtsDatum property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getGeburtsDatum() {
+ return geburtsDatum;
+ }
+
+ /**
+ * Sets the value of the geburtsDatum property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setGeburtsDatum(String value) {
+ this.geburtsDatum = value;
+ }
+
+ /**
+ * Gets the value of the gesetzlicherVertreter property.
+ *
+ * @return
+ * possible object is
+ * {@link Boolean }
+ *
+ */
+ public Boolean isGesetzlicherVertreter() {
+ return gesetzlicherVertreter;
+ }
+
+ /**
+ * Sets the value of the gesetzlicherVertreter property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Boolean }
+ *
+ */
+ public void setGesetzlicherVertreter(Boolean value) {
+ this.gesetzlicherVertreter = value;
+ }
+
+ /**
+ * Gets the value of the heimatOrt property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getHeimatOrt() {
+ return heimatOrt;
+ }
+
+ /**
+ * Sets the value of the heimatOrt property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setHeimatOrt(String value) {
+ this.heimatOrt = value;
+ }
+
+ /**
+ * Gets the value of the kanton property.
+ *
+ * @return
+ * possible object is
+ * {@link KantonType }
+ *
+ */
+ public KantonType getKanton() {
+ return kanton;
+ }
+
+ /**
+ * Sets the value of the kanton property.
+ *
+ * @param value
+ * allowed object is
+ * {@link KantonType }
+ *
+ */
+ public void setKanton(KantonType value) {
+ this.kanton = value;
+ }
+
+ /**
+ * Gets the value of the landKurzname property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getLandKurzname() {
+ return landKurzname;
+ }
+
+ /**
+ * Sets the value of the landKurzname property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setLandKurzname(String value) {
+ this.landKurzname = value;
+ }
+
+ /**
+ * Gets the value of the ledigenName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getLedigenName() {
+ return ledigenName;
+ }
+
+ /**
+ * Sets the value of the ledigenName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setLedigenName(String value) {
+ this.ledigenName = value;
+ }
+
+ /**
+ * Gets the value of the nationalitaet property.
+ *
+ * @return
+ * possible object is
+ * {@link Nationalitaet }
+ *
+ */
+ public Nationalitaet getNationalitaet() {
+ return nationalitaet;
+ }
+
+ /**
+ * Sets the value of the nationalitaet property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Nationalitaet }
+ *
+ */
+ public void setNationalitaet(Nationalitaet value) {
+ this.nationalitaet = value;
+ }
+
+ /**
+ * Gets the value of the nationalitaetStatus property.
+ *
+ * @return
+ * possible object is
+ * {@link NationalitaetStatus }
+ *
+ */
+ public NationalitaetStatus getNationalitaetStatus() {
+ return nationalitaetStatus;
+ }
+
+ /**
+ * Sets the value of the nationalitaetStatus property.
+ *
+ * @param value
+ * allowed object is
+ * {@link NationalitaetStatus }
+ *
+ */
+ public void setNationalitaetStatus(NationalitaetStatus value) {
+ this.nationalitaetStatus = value;
+ }
+
+ /**
+ * Gets the value of the rufname property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getRufname() {
+ return rufname;
+ }
+
+ /**
+ * Sets the value of the rufname property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setRufname(String value) {
+ this.rufname = value;
+ }
+
+ /**
+ * Gets the value of the sexType property.
+ *
+ * @return
+ * possible object is
+ * {@link StatusType }
+ *
+ */
+ public StatusType getSexType() {
+ return sexType;
+ }
+
+ /**
+ * Sets the value of the sexType property.
+ *
+ * @param value
+ * allowed object is
+ * {@link StatusType }
+ *
+ */
+ public void setSexType(StatusType value) {
+ this.sexType = value;
+ }
+
+ /**
+ * Gets the value of the titel property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getTitel() {
+ return titel;
+ }
+
+ /**
+ * Sets the value of the titel property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setTitel(String value) {
+ this.titel = value;
+ }
+
+ /**
+ * Gets the value of the todesDatum property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getTodesDatum() {
+ return todesDatum;
+ }
+
+ /**
+ * Sets the value of the todesDatum property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setTodesDatum(XMLGregorianCalendar value) {
+ this.todesDatum = value;
+ }
+
+ /**
+ * Gets the value of the vorname property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getVorname() {
+ return vorname;
+ }
+
+ /**
+ * Sets the value of the vorname property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setVorname(String value) {
+ this.vorname = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NatuerlichePerson.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ObjectFactory.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ObjectFactory.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ObjectFactory.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,947 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+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.jboss.test.ws.jaxws.jbws1857.types package.
+ * <p>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 _UpdateNatPersonResponse_QNAME = new QName("http://example.com", "updateNatPersonResponse");
+ private final static QName _FetchNatPersonResponse_QNAME = new QName("http://example.com", "fetchNatPersonResponse");
+ private final static QName _DeleteNatPerson_QNAME = new QName("http://example.com", "deleteNatPerson");
+ private final static QName _InsertMandantUser_QNAME = new QName("http://example.com", "insertMandantUser");
+ private final static QName _FetchGlaeubiger_QNAME = new QName("http://example.com", "fetchGlaeubiger");
+ private final static QName _UpdateGlaeubiger_QNAME = new QName("http://example.com", "updateGlaeubiger");
+ private final static QName _UpdateMandant_QNAME = new QName("http://example.com", "updateMandant");
+ private final static QName _DeleteMandant_QNAME = new QName("http://example.com", "deleteMandant");
+ private final static QName _DeleteMandantUser_QNAME = new QName("http://example.com", "deleteMandantUser");
+ private final static QName _FetchGlaeubigerResponse_QNAME = new QName("http://example.com", "fetchGlaeubigerResponse");
+ private final static QName _InsertMandant_QNAME = new QName("http://example.com", "insertMandant");
+ private final static QName _UpdateMandantUserResponse_QNAME = new QName("http://example.com", "updateMandantUserResponse");
+ private final static QName _UpdateUser_QNAME = new QName("http://example.com", "updateUser");
+ private final static QName _InsertGlaeubiger_QNAME = new QName("http://example.com", "insertGlaeubiger");
+ private final static QName _InsertUserResponse_QNAME = new QName("http://example.com", "insertUserResponse");
+ private final static QName _UpdateUserResponse_QNAME = new QName("http://example.com", "updateUserResponse");
+ private final static QName _DeleteUserResponse_QNAME = new QName("http://example.com", "deleteUserResponse");
+ private final static QName _FetchMandantResponse_QNAME = new QName("http://example.com", "fetchMandantResponse");
+ private final static QName _InsertMandantUserResponse_QNAME = new QName("http://example.com", "insertMandantUserResponse");
+ private final static QName _UpdateNatPerson_QNAME = new QName("http://example.com", "updateNatPerson");
+ private final static QName _DeleteGlaeubigerResponse_QNAME = new QName("http://example.com", "deleteGlaeubigerResponse");
+ private final static QName _DeleteMandantUserResponse_QNAME = new QName("http://example.com", "deleteMandantUserResponse");
+ private final static QName _UpdateMandantResponse_QNAME = new QName("http://example.com", "updateMandantResponse");
+ private final static QName _FetchMandantUserResponse_QNAME = new QName("http://example.com", "fetchMandantUserResponse");
+ private final static QName _DeleteUser_QNAME = new QName("http://example.com", "deleteUser");
+ private final static QName _InsertNatPerson_QNAME = new QName("http://example.com", "insertNatPerson");
+ private final static QName _UpdateGlaeubigerResponse_QNAME = new QName("http://example.com", "updateGlaeubigerResponse");
+ private final static QName _FetchUserResponse_QNAME = new QName("http://example.com", "fetchUserResponse");
+ private final static QName _DeleteNatPersonResponse_QNAME = new QName("http://example.com", "deleteNatPersonResponse");
+ private final static QName _FetchNatPerson_QNAME = new QName("http://example.com", "fetchNatPerson");
+ private final static QName _UpdateMandantUser_QNAME = new QName("http://example.com", "updateMandantUser");
+ private final static QName _FetchMandantUser_QNAME = new QName("http://example.com", "fetchMandantUser");
+ private final static QName _FetchMandant_QNAME = new QName("http://example.com", "fetchMandant");
+ private final static QName _FetchUser_QNAME = new QName("http://example.com", "fetchUser");
+ private final static QName _InsertGlaeubigerResponse_QNAME = new QName("http://example.com", "insertGlaeubigerResponse");
+ private final static QName _InsertMandantResponse_QNAME = new QName("http://example.com", "insertMandantResponse");
+ private final static QName _InsertUser_QNAME = new QName("http://example.com", "insertUser");
+ private final static QName _DeleteGlaeubiger_QNAME = new QName("http://example.com", "deleteGlaeubiger");
+ private final static QName _InsertNatPersonResponse_QNAME = new QName("http://example.com", "insertNatPersonResponse");
+ private final static QName _DeleteMandantResponse_QNAME = new QName("http://example.com", "deleteMandantResponse");
+
+ /**
+ * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.jboss.test.ws.jaxws.jbws1857.types
+ *
+ */
+ public ObjectFactory() {
+ }
+
+ /**
+ * Create an instance of {@link InsertNatPersonResponse }
+ *
+ */
+ public InsertNatPersonResponse createInsertNatPersonResponse() {
+ return new InsertNatPersonResponse();
+ }
+
+ /**
+ * Create an instance of {@link UpdateGlaeubiger }
+ *
+ */
+ public UpdateGlaeubiger createUpdateGlaeubiger() {
+ return new UpdateGlaeubiger();
+ }
+
+ /**
+ * Create an instance of {@link InsertMandantUser }
+ *
+ */
+ public InsertMandantUser createInsertMandantUser() {
+ return new InsertMandantUser();
+ }
+
+ /**
+ * Create an instance of {@link DeleteMandantUser }
+ *
+ */
+ public DeleteMandantUser createDeleteMandantUser() {
+ return new DeleteMandantUser();
+ }
+
+ /**
+ * Create an instance of {@link FetchNatPerson }
+ *
+ */
+ public FetchNatPerson createFetchNatPerson() {
+ return new FetchNatPerson();
+ }
+
+ /**
+ * Create an instance of {@link NatPersonResult }
+ *
+ */
+ public NatPersonResult createNatPersonResult() {
+ return new NatPersonResult();
+ }
+
+ /**
+ * Create an instance of {@link DeleteNatPerson }
+ *
+ */
+ public DeleteNatPerson createDeleteNatPerson() {
+ return new DeleteNatPerson();
+ }
+
+ /**
+ * Create an instance of {@link Glaeubiger }
+ *
+ */
+ public Glaeubiger createGlaeubiger() {
+ return new Glaeubiger();
+ }
+
+ /**
+ * Create an instance of {@link UserResult }
+ *
+ */
+ public UserResult createUserResult() {
+ return new UserResult();
+ }
+
+ /**
+ * Create an instance of {@link AusstellendeBehoerde }
+ *
+ */
+ public AusstellendeBehoerde createAusstellendeBehoerde() {
+ return new AusstellendeBehoerde();
+ }
+
+ /**
+ * Create an instance of {@link FetchMandantUserResponse }
+ *
+ */
+ public FetchMandantUserResponse createFetchMandantUserResponse() {
+ return new FetchMandantUserResponse();
+ }
+
+ /**
+ * Create an instance of {@link FetchMandantUser }
+ *
+ */
+ public FetchMandantUser createFetchMandantUser() {
+ return new FetchMandantUser();
+ }
+
+ /**
+ * Create an instance of {@link User }
+ *
+ */
+ public User createUser() {
+ return new User();
+ }
+
+ /**
+ * Create an instance of {@link InsertNatPerson }
+ *
+ */
+ public InsertNatPerson createInsertNatPerson() {
+ return new InsertNatPerson();
+ }
+
+ /**
+ * Create an instance of {@link DeleteNatPersonResponse }
+ *
+ */
+ public DeleteNatPersonResponse createDeleteNatPersonResponse() {
+ return new DeleteNatPersonResponse();
+ }
+
+ /**
+ * Create an instance of {@link MandantUserArrayResult }
+ *
+ */
+ public MandantUserArrayResult createMandantUserArrayResult() {
+ return new MandantUserArrayResult();
+ }
+
+ /**
+ * Create an instance of {@link UpdateMandantUserResponse }
+ *
+ */
+ public UpdateMandantUserResponse createUpdateMandantUserResponse() {
+ return new UpdateMandantUserResponse();
+ }
+
+ /**
+ * Create an instance of {@link UpdateMandantResponse }
+ *
+ */
+ public UpdateMandantResponse createUpdateMandantResponse() {
+ return new UpdateMandantResponse();
+ }
+
+ /**
+ * Create an instance of {@link InsertGlaeubiger }
+ *
+ */
+ public InsertGlaeubiger createInsertGlaeubiger() {
+ return new InsertGlaeubiger();
+ }
+
+ /**
+ * Create an instance of {@link DeleteGlaeubiger }
+ *
+ */
+ public DeleteGlaeubiger createDeleteGlaeubiger() {
+ return new DeleteGlaeubiger();
+ }
+
+ /**
+ * Create an instance of {@link HerkunftReferenz }
+ *
+ */
+ public HerkunftReferenz createHerkunftReferenz() {
+ return new HerkunftReferenz();
+ }
+
+ /**
+ * Create an instance of {@link GlaeubigerVerbindung }
+ *
+ */
+ public GlaeubigerVerbindung createGlaeubigerVerbindung() {
+ return new GlaeubigerVerbindung();
+ }
+
+ /**
+ * Create an instance of {@link FetchGlaeubigerResponse }
+ *
+ */
+ public FetchGlaeubigerResponse createFetchGlaeubigerResponse() {
+ return new FetchGlaeubigerResponse();
+ }
+
+ /**
+ * Create an instance of {@link FetchUserResponse }
+ *
+ */
+ public FetchUserResponse createFetchUserResponse() {
+ return new FetchUserResponse();
+ }
+
+ /**
+ * Create an instance of {@link Adresse }
+ *
+ */
+ public Adresse createAdresse() {
+ return new Adresse();
+ }
+
+ /**
+ * Create an instance of {@link MandantArrayResult }
+ *
+ */
+ public MandantArrayResult createMandantArrayResult() {
+ return new MandantArrayResult();
+ }
+
+ /**
+ * Create an instance of {@link InsertMandant }
+ *
+ */
+ public InsertMandant createInsertMandant() {
+ return new InsertMandant();
+ }
+
+ /**
+ * Create an instance of {@link MandantUserResult }
+ *
+ */
+ public MandantUserResult createMandantUserResult() {
+ return new MandantUserResult();
+ }
+
+ /**
+ * Create an instance of {@link UserArrayResult }
+ *
+ */
+ public UserArrayResult createUserArrayResult() {
+ return new UserArrayResult();
+ }
+
+ /**
+ * Create an instance of {@link MandantResult }
+ *
+ */
+ public MandantResult createMandantResult() {
+ return new MandantResult();
+ }
+
+ /**
+ * Create an instance of {@link DeleteMandantUserResponse }
+ *
+ */
+ public DeleteMandantUserResponse createDeleteMandantUserResponse() {
+ return new DeleteMandantUserResponse();
+ }
+
+ /**
+ * Create an instance of {@link DeleteMandantResponse }
+ *
+ */
+ public DeleteMandantResponse createDeleteMandantResponse() {
+ return new DeleteMandantResponse();
+ }
+
+ /**
+ * Create an instance of {@link FetchMandant }
+ *
+ */
+ public FetchMandant createFetchMandant() {
+ return new FetchMandant();
+ }
+
+ /**
+ * Create an instance of {@link FetchGlaeubiger }
+ *
+ */
+ public FetchGlaeubiger createFetchGlaeubiger() {
+ return new FetchGlaeubiger();
+ }
+
+ /**
+ * Create an instance of {@link UpdateNatPersonResponse }
+ *
+ */
+ public UpdateNatPersonResponse createUpdateNatPersonResponse() {
+ return new UpdateNatPersonResponse();
+ }
+
+ /**
+ * Create an instance of {@link GlaeubigerArrayResult }
+ *
+ */
+ public GlaeubigerArrayResult createGlaeubigerArrayResult() {
+ return new GlaeubigerArrayResult();
+ }
+
+ /**
+ * Create an instance of {@link GlaeubigerResult }
+ *
+ */
+ public GlaeubigerResult createGlaeubigerResult() {
+ return new GlaeubigerResult();
+ }
+
+ /**
+ * Create an instance of {@link MandantUser }
+ *
+ */
+ public MandantUser createMandantUser() {
+ return new MandantUser();
+ }
+
+ /**
+ * Create an instance of {@link FetchNatPersonResponse }
+ *
+ */
+ public FetchNatPersonResponse createFetchNatPersonResponse() {
+ return new FetchNatPersonResponse();
+ }
+
+ /**
+ * Create an instance of {@link DeleteUser }
+ *
+ */
+ public DeleteUser createDeleteUser() {
+ return new DeleteUser();
+ }
+
+ /**
+ * Create an instance of {@link NatuerlichePerson }
+ *
+ */
+ public NatuerlichePerson createNatuerlichePerson() {
+ return new NatuerlichePerson();
+ }
+
+ /**
+ * Create an instance of {@link Verlustschein }
+ *
+ */
+ public Verlustschein createVerlustschein() {
+ return new Verlustschein();
+ }
+
+ /**
+ * Create an instance of {@link UpdateMandantUser }
+ *
+ */
+ public UpdateMandantUser createUpdateMandantUser() {
+ return new UpdateMandantUser();
+ }
+
+ /**
+ * Create an instance of {@link DeleteMandant }
+ *
+ */
+ public DeleteMandant createDeleteMandant() {
+ return new DeleteMandant();
+ }
+
+ /**
+ * Create an instance of {@link InsertMandantUserResponse }
+ *
+ */
+ public InsertMandantUserResponse createInsertMandantUserResponse() {
+ return new InsertMandantUserResponse();
+ }
+
+ /**
+ * Create an instance of {@link GlaeubigerVertreter }
+ *
+ */
+ public GlaeubigerVertreter createGlaeubigerVertreter() {
+ return new GlaeubigerVertreter();
+ }
+
+ /**
+ * Create an instance of {@link InsertUserResponse }
+ *
+ */
+ public InsertUserResponse createInsertUserResponse() {
+ return new InsertUserResponse();
+ }
+
+ /**
+ * Create an instance of {@link Nationalitaet }
+ *
+ */
+ public Nationalitaet createNationalitaet() {
+ return new Nationalitaet();
+ }
+
+ /**
+ * Create an instance of {@link UpdateNatPerson }
+ *
+ */
+ public UpdateNatPerson createUpdateNatPerson() {
+ return new UpdateNatPerson();
+ }
+
+ /**
+ * Create an instance of {@link DeleteUserResponse }
+ *
+ */
+ public DeleteUserResponse createDeleteUserResponse() {
+ return new DeleteUserResponse();
+ }
+
+ /**
+ * Create an instance of {@link InsertUser }
+ *
+ */
+ public InsertUser createInsertUser() {
+ return new InsertUser();
+ }
+
+ /**
+ * Create an instance of {@link UpdateUserResponse }
+ *
+ */
+ public UpdateUserResponse createUpdateUserResponse() {
+ return new UpdateUserResponse();
+ }
+
+ /**
+ * Create an instance of {@link PersonAdresse }
+ *
+ */
+ public PersonAdresse createPersonAdresse() {
+ return new PersonAdresse();
+ }
+
+ /**
+ * Create an instance of {@link PersonInterface }
+ *
+ */
+ public PersonInterface createPersonInterface() {
+ return new PersonInterface();
+ }
+
+ /**
+ * Create an instance of {@link FetchUser }
+ *
+ */
+ public FetchUser createFetchUser() {
+ return new FetchUser();
+ }
+
+ /**
+ * Create an instance of {@link Mandant }
+ *
+ */
+ public Mandant createMandant() {
+ return new Mandant();
+ }
+
+ /**
+ * Create an instance of {@link FetchMandantResponse }
+ *
+ */
+ public FetchMandantResponse createFetchMandantResponse() {
+ return new FetchMandantResponse();
+ }
+
+ /**
+ * Create an instance of {@link UpdateMandant }
+ *
+ */
+ public UpdateMandant createUpdateMandant() {
+ return new UpdateMandant();
+ }
+
+ /**
+ * Create an instance of {@link InsertMandantResponse }
+ *
+ */
+ public InsertMandantResponse createInsertMandantResponse() {
+ return new InsertMandantResponse();
+ }
+
+ /**
+ * Create an instance of {@link DeleteGlaeubigerResponse }
+ *
+ */
+ public DeleteGlaeubigerResponse createDeleteGlaeubigerResponse() {
+ return new DeleteGlaeubigerResponse();
+ }
+
+ /**
+ * Create an instance of {@link InsertGlaeubigerResponse }
+ *
+ */
+ public InsertGlaeubigerResponse createInsertGlaeubigerResponse() {
+ return new InsertGlaeubigerResponse();
+ }
+
+ /**
+ * Create an instance of {@link UpdateGlaeubigerResponse }
+ *
+ */
+ public UpdateGlaeubigerResponse createUpdateGlaeubigerResponse() {
+ return new UpdateGlaeubigerResponse();
+ }
+
+ /**
+ * Create an instance of {@link UpdateUser }
+ *
+ */
+ public UpdateUser createUpdateUser() {
+ return new UpdateUser();
+ }
+
+ /**
+ * Create an instance of {@link ServiceStatus }
+ *
+ */
+ public ServiceStatus createServiceStatus() {
+ return new ServiceStatus();
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link UpdateNatPersonResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "updateNatPersonResponse")
+ public JAXBElement<UpdateNatPersonResponse> createUpdateNatPersonResponse(UpdateNatPersonResponse value) {
+ return new JAXBElement<UpdateNatPersonResponse>(_UpdateNatPersonResponse_QNAME, UpdateNatPersonResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link FetchNatPersonResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "fetchNatPersonResponse")
+ public JAXBElement<FetchNatPersonResponse> createFetchNatPersonResponse(FetchNatPersonResponse value) {
+ return new JAXBElement<FetchNatPersonResponse>(_FetchNatPersonResponse_QNAME, FetchNatPersonResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link DeleteNatPerson }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "deleteNatPerson")
+ public JAXBElement<DeleteNatPerson> createDeleteNatPerson(DeleteNatPerson value) {
+ return new JAXBElement<DeleteNatPerson>(_DeleteNatPerson_QNAME, DeleteNatPerson.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link InsertMandantUser }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "insertMandantUser")
+ public JAXBElement<InsertMandantUser> createInsertMandantUser(InsertMandantUser value) {
+ return new JAXBElement<InsertMandantUser>(_InsertMandantUser_QNAME, InsertMandantUser.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link FetchGlaeubiger }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "fetchGlaeubiger")
+ public JAXBElement<FetchGlaeubiger> createFetchGlaeubiger(FetchGlaeubiger value) {
+ return new JAXBElement<FetchGlaeubiger>(_FetchGlaeubiger_QNAME, FetchGlaeubiger.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link UpdateGlaeubiger }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "updateGlaeubiger")
+ public JAXBElement<UpdateGlaeubiger> createUpdateGlaeubiger(UpdateGlaeubiger value) {
+ return new JAXBElement<UpdateGlaeubiger>(_UpdateGlaeubiger_QNAME, UpdateGlaeubiger.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link UpdateMandant }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "updateMandant")
+ public JAXBElement<UpdateMandant> createUpdateMandant(UpdateMandant value) {
+ return new JAXBElement<UpdateMandant>(_UpdateMandant_QNAME, UpdateMandant.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link DeleteMandant }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "deleteMandant")
+ public JAXBElement<DeleteMandant> createDeleteMandant(DeleteMandant value) {
+ return new JAXBElement<DeleteMandant>(_DeleteMandant_QNAME, DeleteMandant.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link DeleteMandantUser }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "deleteMandantUser")
+ public JAXBElement<DeleteMandantUser> createDeleteMandantUser(DeleteMandantUser value) {
+ return new JAXBElement<DeleteMandantUser>(_DeleteMandantUser_QNAME, DeleteMandantUser.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link FetchGlaeubigerResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "fetchGlaeubigerResponse")
+ public JAXBElement<FetchGlaeubigerResponse> createFetchGlaeubigerResponse(FetchGlaeubigerResponse value) {
+ return new JAXBElement<FetchGlaeubigerResponse>(_FetchGlaeubigerResponse_QNAME, FetchGlaeubigerResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link InsertMandant }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "insertMandant")
+ public JAXBElement<InsertMandant> createInsertMandant(InsertMandant value) {
+ return new JAXBElement<InsertMandant>(_InsertMandant_QNAME, InsertMandant.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link UpdateMandantUserResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "updateMandantUserResponse")
+ public JAXBElement<UpdateMandantUserResponse> createUpdateMandantUserResponse(UpdateMandantUserResponse value) {
+ return new JAXBElement<UpdateMandantUserResponse>(_UpdateMandantUserResponse_QNAME, UpdateMandantUserResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link UpdateUser }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "updateUser")
+ public JAXBElement<UpdateUser> createUpdateUser(UpdateUser value) {
+ return new JAXBElement<UpdateUser>(_UpdateUser_QNAME, UpdateUser.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link InsertGlaeubiger }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "insertGlaeubiger")
+ public JAXBElement<InsertGlaeubiger> createInsertGlaeubiger(InsertGlaeubiger value) {
+ return new JAXBElement<InsertGlaeubiger>(_InsertGlaeubiger_QNAME, InsertGlaeubiger.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link InsertUserResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "insertUserResponse")
+ public JAXBElement<InsertUserResponse> createInsertUserResponse(InsertUserResponse value) {
+ return new JAXBElement<InsertUserResponse>(_InsertUserResponse_QNAME, InsertUserResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link UpdateUserResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "updateUserResponse")
+ public JAXBElement<UpdateUserResponse> createUpdateUserResponse(UpdateUserResponse value) {
+ return new JAXBElement<UpdateUserResponse>(_UpdateUserResponse_QNAME, UpdateUserResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link DeleteUserResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "deleteUserResponse")
+ public JAXBElement<DeleteUserResponse> createDeleteUserResponse(DeleteUserResponse value) {
+ return new JAXBElement<DeleteUserResponse>(_DeleteUserResponse_QNAME, DeleteUserResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link FetchMandantResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "fetchMandantResponse")
+ public JAXBElement<FetchMandantResponse> createFetchMandantResponse(FetchMandantResponse value) {
+ return new JAXBElement<FetchMandantResponse>(_FetchMandantResponse_QNAME, FetchMandantResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link InsertMandantUserResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "insertMandantUserResponse")
+ public JAXBElement<InsertMandantUserResponse> createInsertMandantUserResponse(InsertMandantUserResponse value) {
+ return new JAXBElement<InsertMandantUserResponse>(_InsertMandantUserResponse_QNAME, InsertMandantUserResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link UpdateNatPerson }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "updateNatPerson")
+ public JAXBElement<UpdateNatPerson> createUpdateNatPerson(UpdateNatPerson value) {
+ return new JAXBElement<UpdateNatPerson>(_UpdateNatPerson_QNAME, UpdateNatPerson.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link DeleteGlaeubigerResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "deleteGlaeubigerResponse")
+ public JAXBElement<DeleteGlaeubigerResponse> createDeleteGlaeubigerResponse(DeleteGlaeubigerResponse value) {
+ return new JAXBElement<DeleteGlaeubigerResponse>(_DeleteGlaeubigerResponse_QNAME, DeleteGlaeubigerResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link DeleteMandantUserResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "deleteMandantUserResponse")
+ public JAXBElement<DeleteMandantUserResponse> createDeleteMandantUserResponse(DeleteMandantUserResponse value) {
+ return new JAXBElement<DeleteMandantUserResponse>(_DeleteMandantUserResponse_QNAME, DeleteMandantUserResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link UpdateMandantResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "updateMandantResponse")
+ public JAXBElement<UpdateMandantResponse> createUpdateMandantResponse(UpdateMandantResponse value) {
+ return new JAXBElement<UpdateMandantResponse>(_UpdateMandantResponse_QNAME, UpdateMandantResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link FetchMandantUserResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "fetchMandantUserResponse")
+ public JAXBElement<FetchMandantUserResponse> createFetchMandantUserResponse(FetchMandantUserResponse value) {
+ return new JAXBElement<FetchMandantUserResponse>(_FetchMandantUserResponse_QNAME, FetchMandantUserResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link DeleteUser }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "deleteUser")
+ public JAXBElement<DeleteUser> createDeleteUser(DeleteUser value) {
+ return new JAXBElement<DeleteUser>(_DeleteUser_QNAME, DeleteUser.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link InsertNatPerson }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "insertNatPerson")
+ public JAXBElement<InsertNatPerson> createInsertNatPerson(InsertNatPerson value) {
+ return new JAXBElement<InsertNatPerson>(_InsertNatPerson_QNAME, InsertNatPerson.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link UpdateGlaeubigerResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "updateGlaeubigerResponse")
+ public JAXBElement<UpdateGlaeubigerResponse> createUpdateGlaeubigerResponse(UpdateGlaeubigerResponse value) {
+ return new JAXBElement<UpdateGlaeubigerResponse>(_UpdateGlaeubigerResponse_QNAME, UpdateGlaeubigerResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link FetchUserResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "fetchUserResponse")
+ public JAXBElement<FetchUserResponse> createFetchUserResponse(FetchUserResponse value) {
+ return new JAXBElement<FetchUserResponse>(_FetchUserResponse_QNAME, FetchUserResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link DeleteNatPersonResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "deleteNatPersonResponse")
+ public JAXBElement<DeleteNatPersonResponse> createDeleteNatPersonResponse(DeleteNatPersonResponse value) {
+ return new JAXBElement<DeleteNatPersonResponse>(_DeleteNatPersonResponse_QNAME, DeleteNatPersonResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link FetchNatPerson }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "fetchNatPerson")
+ public JAXBElement<FetchNatPerson> createFetchNatPerson(FetchNatPerson value) {
+ return new JAXBElement<FetchNatPerson>(_FetchNatPerson_QNAME, FetchNatPerson.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link UpdateMandantUser }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "updateMandantUser")
+ public JAXBElement<UpdateMandantUser> createUpdateMandantUser(UpdateMandantUser value) {
+ return new JAXBElement<UpdateMandantUser>(_UpdateMandantUser_QNAME, UpdateMandantUser.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link FetchMandantUser }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "fetchMandantUser")
+ public JAXBElement<FetchMandantUser> createFetchMandantUser(FetchMandantUser value) {
+ return new JAXBElement<FetchMandantUser>(_FetchMandantUser_QNAME, FetchMandantUser.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link FetchMandant }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "fetchMandant")
+ public JAXBElement<FetchMandant> createFetchMandant(FetchMandant value) {
+ return new JAXBElement<FetchMandant>(_FetchMandant_QNAME, FetchMandant.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link FetchUser }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "fetchUser")
+ public JAXBElement<FetchUser> createFetchUser(FetchUser value) {
+ return new JAXBElement<FetchUser>(_FetchUser_QNAME, FetchUser.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link InsertGlaeubigerResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "insertGlaeubigerResponse")
+ public JAXBElement<InsertGlaeubigerResponse> createInsertGlaeubigerResponse(InsertGlaeubigerResponse value) {
+ return new JAXBElement<InsertGlaeubigerResponse>(_InsertGlaeubigerResponse_QNAME, InsertGlaeubigerResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link InsertMandantResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "insertMandantResponse")
+ public JAXBElement<InsertMandantResponse> createInsertMandantResponse(InsertMandantResponse value) {
+ return new JAXBElement<InsertMandantResponse>(_InsertMandantResponse_QNAME, InsertMandantResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link InsertUser }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "insertUser")
+ public JAXBElement<InsertUser> createInsertUser(InsertUser value) {
+ return new JAXBElement<InsertUser>(_InsertUser_QNAME, InsertUser.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link DeleteGlaeubiger }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "deleteGlaeubiger")
+ public JAXBElement<DeleteGlaeubiger> createDeleteGlaeubiger(DeleteGlaeubiger value) {
+ return new JAXBElement<DeleteGlaeubiger>(_DeleteGlaeubiger_QNAME, DeleteGlaeubiger.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link InsertNatPersonResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "insertNatPersonResponse")
+ public JAXBElement<InsertNatPersonResponse> createInsertNatPersonResponse(InsertNatPersonResponse value) {
+ return new JAXBElement<InsertNatPersonResponse>(_InsertNatPersonResponse_QNAME, InsertNatPersonResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link DeleteMandantResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://example.com", name = "deleteMandantResponse")
+ public JAXBElement<DeleteMandantResponse> createDeleteMandantResponse(DeleteMandantResponse value) {
+ return new JAXBElement<DeleteMandantResponse>(_DeleteMandantResponse_QNAME, DeleteMandantResponse.class, null, value);
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ObjectFactory.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Person.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Person.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Person.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,400 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+
+/**
+ * <p>Java class for person complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="person">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="dateCreated" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="dateModified" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="mandant" type="{http://example.com}mandant" minOccurs="0"/>
+ * <element name="personAdressen" type="{http://example.com}personAdresse" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="personId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ * <element name="personInterface" type="{http://example.com}personInterface" minOccurs="0"/>
+ * <element name="personenArt" type="{http://example.com}personenArt" minOccurs="0"/>
+ * <element name="sprache" type="{http://example.com}languageType" minOccurs="0"/>
+ * <element name="umzugDatum" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="userIdCreated" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="userIdModified" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="wegzugDatum" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="zuzugDatum" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "person", propOrder = {
+ "dateCreated",
+ "dateModified",
+ "mandant",
+ "personAdressen",
+ "personId",
+ "personInterface",
+ "personenArt",
+ "sprache",
+ "umzugDatum",
+ "userIdCreated",
+ "userIdModified",
+ "wegzugDatum",
+ "zuzugDatum"
+})
+public abstract class Person {
+
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar dateCreated;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar dateModified;
+ protected Mandant mandant;
+ @XmlElement(nillable = true)
+ protected List<PersonAdresse> personAdressen;
+ protected Long personId;
+ protected PersonInterface personInterface;
+ protected PersonenArt personenArt;
+ protected LanguageType sprache;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar umzugDatum;
+ protected String userIdCreated;
+ protected String userIdModified;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar wegzugDatum;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar zuzugDatum;
+
+ /**
+ * Gets the value of the dateCreated property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getDateCreated() {
+ return dateCreated;
+ }
+
+ /**
+ * Sets the value of the dateCreated property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setDateCreated(XMLGregorianCalendar value) {
+ this.dateCreated = value;
+ }
+
+ /**
+ * Gets the value of the dateModified property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getDateModified() {
+ return dateModified;
+ }
+
+ /**
+ * Sets the value of the dateModified property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setDateModified(XMLGregorianCalendar value) {
+ this.dateModified = value;
+ }
+
+ /**
+ * Gets the value of the mandant property.
+ *
+ * @return
+ * possible object is
+ * {@link Mandant }
+ *
+ */
+ public Mandant getMandant() {
+ return mandant;
+ }
+
+ /**
+ * Sets the value of the mandant property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Mandant }
+ *
+ */
+ public void setMandant(Mandant value) {
+ this.mandant = value;
+ }
+
+ /**
+ * Gets the value of the personAdressen property.
+ *
+ * <p>
+ * 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 <CODE>set</CODE> method for the personAdressen property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getPersonAdressen().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link PersonAdresse }
+ *
+ *
+ */
+ public List<PersonAdresse> getPersonAdressen() {
+ if (personAdressen == null) {
+ personAdressen = new ArrayList<PersonAdresse>();
+ }
+ return this.personAdressen;
+ }
+
+ /**
+ * Gets the value of the personId property.
+ *
+ * @return
+ * possible object is
+ * {@link Long }
+ *
+ */
+ public Long getPersonId() {
+ return personId;
+ }
+
+ /**
+ * Sets the value of the personId property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Long }
+ *
+ */
+ public void setPersonId(Long value) {
+ this.personId = value;
+ }
+
+ /**
+ * Gets the value of the personInterface property.
+ *
+ * @return
+ * possible object is
+ * {@link PersonInterface }
+ *
+ */
+ public PersonInterface getPersonInterface() {
+ return personInterface;
+ }
+
+ /**
+ * Sets the value of the personInterface property.
+ *
+ * @param value
+ * allowed object is
+ * {@link PersonInterface }
+ *
+ */
+ public void setPersonInterface(PersonInterface value) {
+ this.personInterface = value;
+ }
+
+ /**
+ * Gets the value of the personenArt property.
+ *
+ * @return
+ * possible object is
+ * {@link PersonenArt }
+ *
+ */
+ public PersonenArt getPersonenArt() {
+ return personenArt;
+ }
+
+ /**
+ * Sets the value of the personenArt property.
+ *
+ * @param value
+ * allowed object is
+ * {@link PersonenArt }
+ *
+ */
+ public void setPersonenArt(PersonenArt value) {
+ this.personenArt = value;
+ }
+
+ /**
+ * Gets the value of the sprache property.
+ *
+ * @return
+ * possible object is
+ * {@link LanguageType }
+ *
+ */
+ public LanguageType getSprache() {
+ return sprache;
+ }
+
+ /**
+ * Sets the value of the sprache property.
+ *
+ * @param value
+ * allowed object is
+ * {@link LanguageType }
+ *
+ */
+ public void setSprache(LanguageType value) {
+ this.sprache = value;
+ }
+
+ /**
+ * Gets the value of the umzugDatum property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getUmzugDatum() {
+ return umzugDatum;
+ }
+
+ /**
+ * Sets the value of the umzugDatum property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setUmzugDatum(XMLGregorianCalendar value) {
+ this.umzugDatum = value;
+ }
+
+ /**
+ * Gets the value of the userIdCreated property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUserIdCreated() {
+ return userIdCreated;
+ }
+
+ /**
+ * Sets the value of the userIdCreated property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUserIdCreated(String value) {
+ this.userIdCreated = value;
+ }
+
+ /**
+ * Gets the value of the userIdModified property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUserIdModified() {
+ return userIdModified;
+ }
+
+ /**
+ * Sets the value of the userIdModified property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUserIdModified(String value) {
+ this.userIdModified = value;
+ }
+
+ /**
+ * Gets the value of the wegzugDatum property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getWegzugDatum() {
+ return wegzugDatum;
+ }
+
+ /**
+ * Sets the value of the wegzugDatum property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setWegzugDatum(XMLGregorianCalendar value) {
+ this.wegzugDatum = value;
+ }
+
+ /**
+ * Gets the value of the zuzugDatum property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getZuzugDatum() {
+ return zuzugDatum;
+ }
+
+ /**
+ * Sets the value of the zuzugDatum property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setZuzugDatum(XMLGregorianCalendar value) {
+ this.zuzugDatum = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Person.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonAdresse.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonAdresse.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonAdresse.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,114 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for personAdresse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="personAdresse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="adresse" type="{http://example.com}adresse" minOccurs="0"/>
+ * <element name="person" type="{http://example.com}person" minOccurs="0"/>
+ * <element name="verbindungsTyp" type="{http://example.com}verbindungsTyp" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "personAdresse", propOrder = {
+ "adresse",
+ "person",
+ "verbindungsTyp"
+})
+public class PersonAdresse {
+
+ protected Adresse adresse;
+ protected Person person;
+ protected VerbindungsTyp verbindungsTyp;
+
+ /**
+ * Gets the value of the adresse property.
+ *
+ * @return
+ * possible object is
+ * {@link Adresse }
+ *
+ */
+ public Adresse getAdresse() {
+ return adresse;
+ }
+
+ /**
+ * Sets the value of the adresse property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Adresse }
+ *
+ */
+ public void setAdresse(Adresse value) {
+ this.adresse = value;
+ }
+
+ /**
+ * Gets the value of the person property.
+ *
+ * @return
+ * possible object is
+ * {@link Person }
+ *
+ */
+ public Person getPerson() {
+ return person;
+ }
+
+ /**
+ * Sets the value of the person property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Person }
+ *
+ */
+ public void setPerson(Person value) {
+ this.person = value;
+ }
+
+ /**
+ * Gets the value of the verbindungsTyp property.
+ *
+ * @return
+ * possible object is
+ * {@link VerbindungsTyp }
+ *
+ */
+ public VerbindungsTyp getVerbindungsTyp() {
+ return verbindungsTyp;
+ }
+
+ /**
+ * Sets the value of the verbindungsTyp property.
+ *
+ * @param value
+ * allowed object is
+ * {@link VerbindungsTyp }
+ *
+ */
+ public void setVerbindungsTyp(VerbindungsTyp value) {
+ this.verbindungsTyp = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonAdresse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonInterface.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonInterface.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonInterface.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,280 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+
+/**
+ * <p>Java class for personInterface complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="personInterface">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="dateCreated" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="dateModified" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="fremdAnwendung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="fremdKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="mandant" type="{http://example.com}mandant" minOccurs="0"/>
+ * <element name="person" type="{http://example.com}person" minOccurs="0"/>
+ * <element name="personId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ * <element name="userIdCreated" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="userIdModified" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "personInterface", propOrder = {
+ "dateCreated",
+ "dateModified",
+ "fremdAnwendung",
+ "fremdKey",
+ "mandant",
+ "person",
+ "personId",
+ "userIdCreated",
+ "userIdModified"
+})
+public class PersonInterface {
+
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar dateCreated;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar dateModified;
+ protected String fremdAnwendung;
+ protected String fremdKey;
+ protected Mandant mandant;
+ protected Person person;
+ protected Long personId;
+ protected String userIdCreated;
+ protected String userIdModified;
+
+ /**
+ * Gets the value of the dateCreated property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getDateCreated() {
+ return dateCreated;
+ }
+
+ /**
+ * Sets the value of the dateCreated property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setDateCreated(XMLGregorianCalendar value) {
+ this.dateCreated = value;
+ }
+
+ /**
+ * Gets the value of the dateModified property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getDateModified() {
+ return dateModified;
+ }
+
+ /**
+ * Sets the value of the dateModified property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setDateModified(XMLGregorianCalendar value) {
+ this.dateModified = value;
+ }
+
+ /**
+ * Gets the value of the fremdAnwendung property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getFremdAnwendung() {
+ return fremdAnwendung;
+ }
+
+ /**
+ * Sets the value of the fremdAnwendung property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setFremdAnwendung(String value) {
+ this.fremdAnwendung = value;
+ }
+
+ /**
+ * Gets the value of the fremdKey property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getFremdKey() {
+ return fremdKey;
+ }
+
+ /**
+ * Sets the value of the fremdKey property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setFremdKey(String value) {
+ this.fremdKey = value;
+ }
+
+ /**
+ * Gets the value of the mandant property.
+ *
+ * @return
+ * possible object is
+ * {@link Mandant }
+ *
+ */
+ public Mandant getMandant() {
+ return mandant;
+ }
+
+ /**
+ * Sets the value of the mandant property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Mandant }
+ *
+ */
+ public void setMandant(Mandant value) {
+ this.mandant = value;
+ }
+
+ /**
+ * Gets the value of the person property.
+ *
+ * @return
+ * possible object is
+ * {@link Person }
+ *
+ */
+ public Person getPerson() {
+ return person;
+ }
+
+ /**
+ * Sets the value of the person property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Person }
+ *
+ */
+ public void setPerson(Person value) {
+ this.person = value;
+ }
+
+ /**
+ * Gets the value of the personId property.
+ *
+ * @return
+ * possible object is
+ * {@link Long }
+ *
+ */
+ public Long getPersonId() {
+ return personId;
+ }
+
+ /**
+ * Sets the value of the personId property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Long }
+ *
+ */
+ public void setPersonId(Long value) {
+ this.personId = value;
+ }
+
+ /**
+ * Gets the value of the userIdCreated property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUserIdCreated() {
+ return userIdCreated;
+ }
+
+ /**
+ * Sets the value of the userIdCreated property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUserIdCreated(String value) {
+ this.userIdCreated = value;
+ }
+
+ /**
+ * Gets the value of the userIdModified property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUserIdModified() {
+ return userIdModified;
+ }
+
+ /**
+ * Sets the value of the userIdModified property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUserIdModified(String value) {
+ this.userIdModified = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonInterface.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonenArt.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonenArt.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonenArt.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,38 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for personenArt.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * <simpleType name="personenArt">
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * <enumeration value="NATUERLICH"/>
+ * <enumeration value="JURISTISCH"/>
+ * </restriction>
+ * </simpleType>
+ * </pre>
+ *
+ */
+@XmlType(name = "personenArt")
+@XmlEnum
+public enum PersonenArt {
+
+ NATUERLICH,
+ JURISTISCH;
+
+ public String value() {
+ return name();
+ }
+
+ public static PersonenArt fromValue(String v) {
+ return valueOf(v);
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonenArt.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ServiceStatus.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ServiceStatus.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ServiceStatus.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,169 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for serviceStatus complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="serviceStatus">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="correlationId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="errorCode" type="{http://example.com}errorCode" minOccurs="0"/>
+ * <element name="errorScope" type="{http://example.com}errorScope" minOccurs="0"/>
+ * <element name="ok" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ * <element name="parameters" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "serviceStatus", propOrder = {
+ "correlationId",
+ "errorCode",
+ "errorScope",
+ "ok",
+ "parameters"
+})
+public class ServiceStatus {
+
+ protected String correlationId;
+ protected ErrorCode errorCode;
+ protected ErrorScope errorScope;
+ protected boolean ok;
+ @XmlElement(nillable = true)
+ protected List<String> parameters;
+
+ /**
+ * Gets the value of the correlationId property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getCorrelationId() {
+ return correlationId;
+ }
+
+ /**
+ * Sets the value of the correlationId property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setCorrelationId(String value) {
+ this.correlationId = value;
+ }
+
+ /**
+ * Gets the value of the errorCode property.
+ *
+ * @return
+ * possible object is
+ * {@link ErrorCode }
+ *
+ */
+ public ErrorCode getErrorCode() {
+ return errorCode;
+ }
+
+ /**
+ * Sets the value of the errorCode property.
+ *
+ * @param value
+ * allowed object is
+ * {@link ErrorCode }
+ *
+ */
+ public void setErrorCode(ErrorCode value) {
+ this.errorCode = value;
+ }
+
+ /**
+ * Gets the value of the errorScope property.
+ *
+ * @return
+ * possible object is
+ * {@link ErrorScope }
+ *
+ */
+ public ErrorScope getErrorScope() {
+ return errorScope;
+ }
+
+ /**
+ * Sets the value of the errorScope property.
+ *
+ * @param value
+ * allowed object is
+ * {@link ErrorScope }
+ *
+ */
+ public void setErrorScope(ErrorScope value) {
+ this.errorScope = value;
+ }
+
+ /**
+ * Gets the value of the ok property.
+ *
+ */
+ public boolean isOk() {
+ return ok;
+ }
+
+ /**
+ * Sets the value of the ok property.
+ *
+ */
+ public void setOk(boolean value) {
+ this.ok = value;
+ }
+
+ /**
+ * Gets the value of the parameters property.
+ *
+ * <p>
+ * 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 <CODE>set</CODE> method for the parameters property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getParameters().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link String }
+ *
+ *
+ */
+ public List<String> getParameters() {
+ if (parameters == null) {
+ parameters = new ArrayList<String>();
+ }
+ return this.parameters;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ServiceStatus.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Stammdaten.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Stammdaten.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Stammdaten.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,302 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.jws.WebMethod;
+import javax.jws.WebParam;
+import javax.jws.WebResult;
+import javax.jws.WebService;
+import javax.xml.ws.RequestWrapper;
+import javax.xml.ws.ResponseWrapper;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.1.1-b03-
+ * Generated source version: 2.0
+ *
+ */
+@WebService(name = "Stammdaten", targetNamespace = "http://example.com")
+public interface Stammdaten {
+
+
+ /**
+ *
+ * @param arg0
+ * @return
+ * returns org.jboss.test.ws.jaxws.jbws1857.types.GlaeubigerResult
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "deleteGlaeubiger", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.DeleteGlaeubiger")
+ @ResponseWrapper(localName = "deleteGlaeubigerResponse", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.DeleteGlaeubigerResponse")
+ public GlaeubigerResult deleteGlaeubiger(
+ @WebParam(name = "arg0", targetNamespace = "")
+ Glaeubiger arg0);
+
+ /**
+ *
+ * @param arg0
+ * @return
+ * returns org.jboss.test.ws.jaxws.jbws1857.types.MandantResult
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "deleteMandant", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.DeleteMandant")
+ @ResponseWrapper(localName = "deleteMandantResponse", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.DeleteMandantResponse")
+ public MandantResult deleteMandant(
+ @WebParam(name = "arg0", targetNamespace = "")
+ Mandant arg0);
+
+ /**
+ *
+ * @param arg0
+ * @return
+ * returns org.jboss.test.ws.jaxws.jbws1857.types.MandantUserResult
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "deleteMandantUser", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.DeleteMandantUser")
+ @ResponseWrapper(localName = "deleteMandantUserResponse", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.DeleteMandantUserResponse")
+ public MandantUserResult deleteMandantUser(
+ @WebParam(name = "arg0", targetNamespace = "")
+ MandantUser arg0);
+
+ /**
+ *
+ * @param arg0
+ * @return
+ * returns org.jboss.test.ws.jaxws.jbws1857.types.NatPersonResult
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "deleteNatPerson", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.DeleteNatPerson")
+ @ResponseWrapper(localName = "deleteNatPersonResponse", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.DeleteNatPersonResponse")
+ public NatPersonResult deleteNatPerson(
+ @WebParam(name = "arg0", targetNamespace = "")
+ NatuerlichePerson arg0);
+
+ /**
+ *
+ * @param arg0
+ * @return
+ * returns org.jboss.test.ws.jaxws.jbws1857.types.UserResult
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "deleteUser", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.DeleteUser")
+ @ResponseWrapper(localName = "deleteUserResponse", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.DeleteUserResponse")
+ public UserResult deleteUser(
+ @WebParam(name = "arg0", targetNamespace = "")
+ User arg0);
+
+ /**
+ *
+ * @param arg0
+ * @return
+ * returns org.jboss.test.ws.jaxws.jbws1857.types.GlaeubigerArrayResult
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "fetchGlaeubiger", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.FetchGlaeubiger")
+ @ResponseWrapper(localName = "fetchGlaeubigerResponse", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.FetchGlaeubigerResponse")
+ public GlaeubigerArrayResult fetchGlaeubiger(
+ @WebParam(name = "arg0", targetNamespace = "")
+ Glaeubiger arg0);
+
+ /**
+ *
+ * @param arg0
+ * @return
+ * returns org.jboss.test.ws.jaxws.jbws1857.types.MandantArrayResult
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "fetchMandant", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.FetchMandant")
+ @ResponseWrapper(localName = "fetchMandantResponse", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.FetchMandantResponse")
+ public MandantArrayResult fetchMandant(
+ @WebParam(name = "arg0", targetNamespace = "")
+ Mandant arg0);
+
+ /**
+ *
+ * @param arg0
+ * @return
+ * returns org.jboss.test.ws.jaxws.jbws1857.types.MandantUserArrayResult
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "fetchMandantUser", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.FetchMandantUser")
+ @ResponseWrapper(localName = "fetchMandantUserResponse", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.FetchMandantUserResponse")
+ public MandantUserArrayResult fetchMandantUser(
+ @WebParam(name = "arg0", targetNamespace = "")
+ MandantUser arg0);
+
+ /**
+ *
+ * @param arg0
+ * @return
+ * returns org.jboss.test.ws.jaxws.jbws1857.types.NatPersonResult
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "fetchNatPerson", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.FetchNatPerson")
+ @ResponseWrapper(localName = "fetchNatPersonResponse", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.FetchNatPersonResponse")
+ public NatPersonResult fetchNatPerson(
+ @WebParam(name = "arg0", targetNamespace = "")
+ NatuerlichePerson arg0);
+
+ /**
+ *
+ * @param arg0
+ * @return
+ * returns org.jboss.test.ws.jaxws.jbws1857.types.UserArrayResult
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "fetchUser", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.FetchUser")
+ @ResponseWrapper(localName = "fetchUserResponse", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.FetchUserResponse")
+ public UserArrayResult fetchUser(
+ @WebParam(name = "arg0", targetNamespace = "")
+ User arg0);
+
+ /**
+ *
+ * @param arg0
+ * @return
+ * returns org.jboss.test.ws.jaxws.jbws1857.types.GlaeubigerResult
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "insertGlaeubiger", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.InsertGlaeubiger")
+ @ResponseWrapper(localName = "insertGlaeubigerResponse", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.InsertGlaeubigerResponse")
+ public GlaeubigerResult insertGlaeubiger(
+ @WebParam(name = "arg0", targetNamespace = "")
+ Glaeubiger arg0);
+
+ /**
+ *
+ * @param arg0
+ * @return
+ * returns org.jboss.test.ws.jaxws.jbws1857.types.MandantResult
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "insertMandant", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.InsertMandant")
+ @ResponseWrapper(localName = "insertMandantResponse", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.InsertMandantResponse")
+ public MandantResult insertMandant(
+ @WebParam(name = "arg0", targetNamespace = "")
+ Mandant arg0);
+
+ /**
+ *
+ * @param arg0
+ * @return
+ * returns org.jboss.test.ws.jaxws.jbws1857.types.MandantUserResult
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "insertMandantUser", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.InsertMandantUser")
+ @ResponseWrapper(localName = "insertMandantUserResponse", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.InsertMandantUserResponse")
+ public MandantUserResult insertMandantUser(
+ @WebParam(name = "arg0", targetNamespace = "")
+ MandantUser arg0);
+
+ /**
+ *
+ * @param arg0
+ * @return
+ * returns org.jboss.test.ws.jaxws.jbws1857.types.NatPersonResult
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "insertNatPerson", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.InsertNatPerson")
+ @ResponseWrapper(localName = "insertNatPersonResponse", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.InsertNatPersonResponse")
+ public NatPersonResult insertNatPerson(
+ @WebParam(name = "arg0", targetNamespace = "")
+ NatuerlichePerson arg0);
+
+ /**
+ *
+ * @param arg0
+ * @return
+ * returns org.jboss.test.ws.jaxws.jbws1857.types.UserResult
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "insertUser", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.InsertUser")
+ @ResponseWrapper(localName = "insertUserResponse", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.InsertUserResponse")
+ public UserResult insertUser(
+ @WebParam(name = "arg0", targetNamespace = "")
+ User arg0);
+
+ /**
+ *
+ * @param arg0
+ * @return
+ * returns org.jboss.test.ws.jaxws.jbws1857.types.GlaeubigerResult
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "updateGlaeubiger", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.UpdateGlaeubiger")
+ @ResponseWrapper(localName = "updateGlaeubigerResponse", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.UpdateGlaeubigerResponse")
+ public GlaeubigerResult updateGlaeubiger(
+ @WebParam(name = "arg0", targetNamespace = "")
+ Glaeubiger arg0);
+
+ /**
+ *
+ * @param arg0
+ * @return
+ * returns org.jboss.test.ws.jaxws.jbws1857.types.MandantResult
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "updateMandant", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.UpdateMandant")
+ @ResponseWrapper(localName = "updateMandantResponse", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.UpdateMandantResponse")
+ public MandantResult updateMandant(
+ @WebParam(name = "arg0", targetNamespace = "")
+ Mandant arg0);
+
+ /**
+ *
+ * @param arg0
+ * @return
+ * returns org.jboss.test.ws.jaxws.jbws1857.types.MandantUserResult
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "updateMandantUser", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.UpdateMandantUser")
+ @ResponseWrapper(localName = "updateMandantUserResponse", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.UpdateMandantUserResponse")
+ public MandantUserResult updateMandantUser(
+ @WebParam(name = "arg0", targetNamespace = "")
+ MandantUser arg0);
+
+ /**
+ *
+ * @param arg0
+ * @return
+ * returns org.jboss.test.ws.jaxws.jbws1857.types.NatPersonResult
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "updateNatPerson", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.UpdateNatPerson")
+ @ResponseWrapper(localName = "updateNatPersonResponse", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.UpdateNatPersonResponse")
+ public NatPersonResult updateNatPerson(
+ @WebParam(name = "arg0", targetNamespace = "")
+ NatuerlichePerson arg0);
+
+ /**
+ *
+ * @param arg0
+ * @return
+ * returns org.jboss.test.ws.jaxws.jbws1857.types.UserResult
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "updateUser", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.UpdateUser")
+ @ResponseWrapper(localName = "updateUserResponse", targetNamespace = "http://example.com", className = "org.jboss.test.ws.jaxws.jbws1857.types.UpdateUserResponse")
+ public UserResult updateUser(
+ @WebParam(name = "arg0", targetNamespace = "")
+ User arg0);
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Stammdaten.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/StammdatenService.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/StammdatenService.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/StammdatenService.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,53 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import javax.xml.ws.WebEndpoint;
+import javax.xml.ws.WebServiceClient;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.1.1-b03-
+ * Generated source version: 2.0
+ *
+ */
+@WebServiceClient(name = "StammdatenService", targetNamespace = "http://example.com", wsdlLocation = "file:/home/tdiesler/svn/jbossws/stack/native/trunk/src/test/resources/jaxws/jbws1857/StammdatenService.wsdl")
+public class StammdatenService
+ extends Service
+{
+
+ private final static URL STAMMDATENSERVICE_WSDL_LOCATION;
+
+ static {
+ URL url = null;
+ try {
+ url = new URL("file:/home/tdiesler/svn/jbossws/stack/native/trunk/src/test/resources/jaxws/jbws1857/StammdatenService.wsdl");
+ } catch (MalformedURLException e) {
+ e.printStackTrace();
+ }
+ STAMMDATENSERVICE_WSDL_LOCATION = url;
+ }
+
+ public StammdatenService(URL wsdlLocation, QName serviceName) {
+ super(wsdlLocation, serviceName);
+ }
+
+ public StammdatenService() {
+ super(STAMMDATENSERVICE_WSDL_LOCATION, new QName("http://example.com", "StammdatenService"));
+ }
+
+ /**
+ *
+ * @return
+ * returns Stammdaten
+ */
+ @WebEndpoint(name = "StammdatenPort")
+ public Stammdaten getStammdatenPort() {
+ return (Stammdaten)super.getPort(new QName("http://example.com", "StammdatenPort"), Stammdaten.class);
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/StammdatenService.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/StatusType.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/StatusType.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/StatusType.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,38 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for statusType.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * <simpleType name="statusType">
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * <enumeration value="INAKTIV"/>
+ * <enumeration value="AKTIV"/>
+ * </restriction>
+ * </simpleType>
+ * </pre>
+ *
+ */
+@XmlType(name = "statusType")
+@XmlEnum
+public enum StatusType {
+
+ INAKTIV,
+ AKTIV;
+
+ public String value() {
+ return name();
+ }
+
+ public static StatusType fromValue(String v) {
+ return valueOf(v);
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/StatusType.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateGlaeubiger.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateGlaeubiger.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateGlaeubiger.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,60 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for updateGlaeubiger complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="updateGlaeubiger">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="arg0" type="{http://example.com}glaeubiger" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "updateGlaeubiger", propOrder = {
+ "arg0"
+})
+public class UpdateGlaeubiger {
+
+ protected Glaeubiger arg0;
+
+ /**
+ * Gets the value of the arg0 property.
+ *
+ * @return
+ * possible object is
+ * {@link Glaeubiger }
+ *
+ */
+ public Glaeubiger getArg0() {
+ return arg0;
+ }
+
+ /**
+ * Sets the value of the arg0 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Glaeubiger }
+ *
+ */
+ public void setArg0(Glaeubiger value) {
+ this.arg0 = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateGlaeubiger.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateGlaeubigerResponse.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateGlaeubigerResponse.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateGlaeubigerResponse.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,62 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for updateGlaeubigerResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="updateGlaeubigerResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://example.com}glaeubigerResult" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "updateGlaeubigerResponse", propOrder = {
+ "_return"
+})
+public class UpdateGlaeubigerResponse {
+
+ @XmlElement(name = "return")
+ protected GlaeubigerResult _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link GlaeubigerResult }
+ *
+ */
+ public GlaeubigerResult getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link GlaeubigerResult }
+ *
+ */
+ public void setReturn(GlaeubigerResult value) {
+ this._return = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateGlaeubigerResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandant.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandant.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandant.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,60 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for updateMandant complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="updateMandant">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="arg0" type="{http://example.com}mandant" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "updateMandant", propOrder = {
+ "arg0"
+})
+public class UpdateMandant {
+
+ protected Mandant arg0;
+
+ /**
+ * Gets the value of the arg0 property.
+ *
+ * @return
+ * possible object is
+ * {@link Mandant }
+ *
+ */
+ public Mandant getArg0() {
+ return arg0;
+ }
+
+ /**
+ * Sets the value of the arg0 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Mandant }
+ *
+ */
+ public void setArg0(Mandant value) {
+ this.arg0 = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandant.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantResponse.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantResponse.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantResponse.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,62 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for updateMandantResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="updateMandantResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://example.com}mandantResult" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "updateMandantResponse", propOrder = {
+ "_return"
+})
+public class UpdateMandantResponse {
+
+ @XmlElement(name = "return")
+ protected MandantResult _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link MandantResult }
+ *
+ */
+ public MandantResult getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link MandantResult }
+ *
+ */
+ public void setReturn(MandantResult value) {
+ this._return = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantUser.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantUser.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantUser.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,60 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for updateMandantUser complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="updateMandantUser">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="arg0" type="{http://example.com}mandantUser" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "updateMandantUser", propOrder = {
+ "arg0"
+})
+public class UpdateMandantUser {
+
+ protected MandantUser arg0;
+
+ /**
+ * Gets the value of the arg0 property.
+ *
+ * @return
+ * possible object is
+ * {@link MandantUser }
+ *
+ */
+ public MandantUser getArg0() {
+ return arg0;
+ }
+
+ /**
+ * Sets the value of the arg0 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link MandantUser }
+ *
+ */
+ public void setArg0(MandantUser value) {
+ this.arg0 = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantUser.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantUserResponse.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantUserResponse.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantUserResponse.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,62 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for updateMandantUserResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="updateMandantUserResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://example.com}mandantUserResult" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "updateMandantUserResponse", propOrder = {
+ "_return"
+})
+public class UpdateMandantUserResponse {
+
+ @XmlElement(name = "return")
+ protected MandantUserResult _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link MandantUserResult }
+ *
+ */
+ public MandantUserResult getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link MandantUserResult }
+ *
+ */
+ public void setReturn(MandantUserResult value) {
+ this._return = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantUserResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateNatPerson.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateNatPerson.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateNatPerson.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,60 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for updateNatPerson complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="updateNatPerson">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="arg0" type="{http://example.com}natuerlichePerson" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "updateNatPerson", propOrder = {
+ "arg0"
+})
+public class UpdateNatPerson {
+
+ protected NatuerlichePerson arg0;
+
+ /**
+ * Gets the value of the arg0 property.
+ *
+ * @return
+ * possible object is
+ * {@link NatuerlichePerson }
+ *
+ */
+ public NatuerlichePerson getArg0() {
+ return arg0;
+ }
+
+ /**
+ * Sets the value of the arg0 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link NatuerlichePerson }
+ *
+ */
+ public void setArg0(NatuerlichePerson value) {
+ this.arg0 = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateNatPerson.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateNatPersonResponse.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateNatPersonResponse.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateNatPersonResponse.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,62 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for updateNatPersonResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="updateNatPersonResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://example.com}natPersonResult" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "updateNatPersonResponse", propOrder = {
+ "_return"
+})
+public class UpdateNatPersonResponse {
+
+ @XmlElement(name = "return")
+ protected NatPersonResult _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link NatPersonResult }
+ *
+ */
+ public NatPersonResult getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link NatPersonResult }
+ *
+ */
+ public void setReturn(NatPersonResult value) {
+ this._return = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateNatPersonResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateUser.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateUser.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateUser.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,60 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for updateUser complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="updateUser">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="arg0" type="{http://example.com}user" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "updateUser", propOrder = {
+ "arg0"
+})
+public class UpdateUser {
+
+ protected User arg0;
+
+ /**
+ * Gets the value of the arg0 property.
+ *
+ * @return
+ * possible object is
+ * {@link User }
+ *
+ */
+ public User getArg0() {
+ return arg0;
+ }
+
+ /**
+ * Sets the value of the arg0 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link User }
+ *
+ */
+ public void setArg0(User value) {
+ this.arg0 = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateUser.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateUserResponse.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateUserResponse.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateUserResponse.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,62 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for updateUserResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="updateUserResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://example.com}userResult" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "updateUserResponse", propOrder = {
+ "_return"
+})
+public class UpdateUserResponse {
+
+ @XmlElement(name = "return")
+ protected UserResult _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link UserResult }
+ *
+ */
+ public UserResult getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link UserResult }
+ *
+ */
+ public void setReturn(UserResult value) {
+ this._return = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateUserResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/User.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/User.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/User.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,445 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+
+/**
+ * <p>Java class for user complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="user">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="dateCreated" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="dateModified" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="gueltigBis" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="gueltigVon" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="kurzzeichen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="passwort" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="sprache" type="{http://example.com}languageType" minOccurs="0"/>
+ * <element name="status" type="{http://example.com}statusType" minOccurs="0"/>
+ * <element name="statusDatum" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="userId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="userIdCreated" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="userIdModified" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="vorname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="zbBenutzerId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "user", propOrder = {
+ "dateCreated",
+ "dateModified",
+ "gueltigBis",
+ "gueltigVon",
+ "kurzzeichen",
+ "name",
+ "passwort",
+ "sprache",
+ "status",
+ "statusDatum",
+ "userId",
+ "userIdCreated",
+ "userIdModified",
+ "vorname",
+ "zbBenutzerId"
+})
+public class User {
+
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar dateCreated;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar dateModified;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar gueltigBis;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar gueltigVon;
+ protected String kurzzeichen;
+ protected String name;
+ protected String passwort;
+ protected LanguageType sprache;
+ protected StatusType status;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar statusDatum;
+ protected String userId;
+ protected String userIdCreated;
+ protected String userIdModified;
+ protected String vorname;
+ protected String zbBenutzerId;
+
+ /**
+ * Gets the value of the dateCreated property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getDateCreated() {
+ return dateCreated;
+ }
+
+ /**
+ * Sets the value of the dateCreated property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setDateCreated(XMLGregorianCalendar value) {
+ this.dateCreated = value;
+ }
+
+ /**
+ * Gets the value of the dateModified property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getDateModified() {
+ return dateModified;
+ }
+
+ /**
+ * Sets the value of the dateModified property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setDateModified(XMLGregorianCalendar value) {
+ this.dateModified = value;
+ }
+
+ /**
+ * Gets the value of the gueltigBis property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getGueltigBis() {
+ return gueltigBis;
+ }
+
+ /**
+ * Sets the value of the gueltigBis property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setGueltigBis(XMLGregorianCalendar value) {
+ this.gueltigBis = value;
+ }
+
+ /**
+ * Gets the value of the gueltigVon property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getGueltigVon() {
+ return gueltigVon;
+ }
+
+ /**
+ * Sets the value of the gueltigVon property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setGueltigVon(XMLGregorianCalendar value) {
+ this.gueltigVon = value;
+ }
+
+ /**
+ * Gets the value of the kurzzeichen property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getKurzzeichen() {
+ return kurzzeichen;
+ }
+
+ /**
+ * Sets the value of the kurzzeichen property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setKurzzeichen(String value) {
+ this.kurzzeichen = value;
+ }
+
+ /**
+ * Gets the value of the name property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getName() {
+ return name;
+ }
+
+ /**
+ * Sets the value of the name property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setName(String value) {
+ this.name = value;
+ }
+
+ /**
+ * Gets the value of the passwort property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getPasswort() {
+ return passwort;
+ }
+
+ /**
+ * Sets the value of the passwort property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setPasswort(String value) {
+ this.passwort = value;
+ }
+
+ /**
+ * Gets the value of the sprache property.
+ *
+ * @return
+ * possible object is
+ * {@link LanguageType }
+ *
+ */
+ public LanguageType getSprache() {
+ return sprache;
+ }
+
+ /**
+ * Sets the value of the sprache property.
+ *
+ * @param value
+ * allowed object is
+ * {@link LanguageType }
+ *
+ */
+ public void setSprache(LanguageType value) {
+ this.sprache = value;
+ }
+
+ /**
+ * Gets the value of the status property.
+ *
+ * @return
+ * possible object is
+ * {@link StatusType }
+ *
+ */
+ public StatusType getStatus() {
+ return status;
+ }
+
+ /**
+ * Sets the value of the status property.
+ *
+ * @param value
+ * allowed object is
+ * {@link StatusType }
+ *
+ */
+ public void setStatus(StatusType value) {
+ this.status = value;
+ }
+
+ /**
+ * Gets the value of the statusDatum property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getStatusDatum() {
+ return statusDatum;
+ }
+
+ /**
+ * Sets the value of the statusDatum property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setStatusDatum(XMLGregorianCalendar value) {
+ this.statusDatum = value;
+ }
+
+ /**
+ * Gets the value of the userId property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUserId() {
+ return userId;
+ }
+
+ /**
+ * Sets the value of the userId property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUserId(String value) {
+ this.userId = value;
+ }
+
+ /**
+ * Gets the value of the userIdCreated property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUserIdCreated() {
+ return userIdCreated;
+ }
+
+ /**
+ * Sets the value of the userIdCreated property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUserIdCreated(String value) {
+ this.userIdCreated = value;
+ }
+
+ /**
+ * Gets the value of the userIdModified property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUserIdModified() {
+ return userIdModified;
+ }
+
+ /**
+ * Sets the value of the userIdModified property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUserIdModified(String value) {
+ this.userIdModified = value;
+ }
+
+ /**
+ * Gets the value of the vorname property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getVorname() {
+ return vorname;
+ }
+
+ /**
+ * Sets the value of the vorname property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setVorname(String value) {
+ this.vorname = value;
+ }
+
+ /**
+ * Gets the value of the zbBenutzerId property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getZbBenutzerId() {
+ return zbBenutzerId;
+ }
+
+ /**
+ * Sets the value of the zbBenutzerId property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setZbBenutzerId(String value) {
+ this.zbBenutzerId = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/User.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UserArrayResult.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UserArrayResult.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UserArrayResult.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,96 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for userArrayResult complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="userArrayResult">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="serviceStatus" type="{http://example.com}serviceStatus" minOccurs="0"/>
+ * <element name="userArray" type="{http://example.com}user" maxOccurs="unbounded" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "userArrayResult", propOrder = {
+ "serviceStatus",
+ "userArray"
+})
+public class UserArrayResult {
+
+ protected ServiceStatus serviceStatus;
+ @XmlElement(nillable = true)
+ protected List<User> userArray;
+
+ /**
+ * Gets the value of the serviceStatus property.
+ *
+ * @return
+ * possible object is
+ * {@link ServiceStatus }
+ *
+ */
+ public ServiceStatus getServiceStatus() {
+ return serviceStatus;
+ }
+
+ /**
+ * Sets the value of the serviceStatus property.
+ *
+ * @param value
+ * allowed object is
+ * {@link ServiceStatus }
+ *
+ */
+ public void setServiceStatus(ServiceStatus value) {
+ this.serviceStatus = value;
+ }
+
+ /**
+ * Gets the value of the userArray property.
+ *
+ * <p>
+ * 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 <CODE>set</CODE> method for the userArray property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getUserArray().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link User }
+ *
+ *
+ */
+ public List<User> getUserArray() {
+ if (userArray == null) {
+ userArray = new ArrayList<User>();
+ }
+ return this.userArray;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UserArrayResult.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UserResult.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UserResult.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UserResult.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,87 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for userResult complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="userResult">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="serviceStatus" type="{http://example.com}serviceStatus" minOccurs="0"/>
+ * <element name="user" type="{http://example.com}user" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "userResult", propOrder = {
+ "serviceStatus",
+ "user"
+})
+public class UserResult {
+
+ protected ServiceStatus serviceStatus;
+ protected User user;
+
+ /**
+ * Gets the value of the serviceStatus property.
+ *
+ * @return
+ * possible object is
+ * {@link ServiceStatus }
+ *
+ */
+ public ServiceStatus getServiceStatus() {
+ return serviceStatus;
+ }
+
+ /**
+ * Sets the value of the serviceStatus property.
+ *
+ * @param value
+ * allowed object is
+ * {@link ServiceStatus }
+ *
+ */
+ public void setServiceStatus(ServiceStatus value) {
+ this.serviceStatus = value;
+ }
+
+ /**
+ * Gets the value of the user property.
+ *
+ * @return
+ * possible object is
+ * {@link User }
+ *
+ */
+ public User getUser() {
+ return user;
+ }
+
+ /**
+ * Sets the value of the user property.
+ *
+ * @param value
+ * allowed object is
+ * {@link User }
+ *
+ */
+ public void setUser(User value) {
+ this.user = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UserResult.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/VerbindungsTyp.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/VerbindungsTyp.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/VerbindungsTyp.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,38 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for verbindungsTyp.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * <simpleType name="verbindungsTyp">
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * <enumeration value="VERLUSTSCHEIN"/>
+ * <enumeration value="UNBEKANNT"/>
+ * </restriction>
+ * </simpleType>
+ * </pre>
+ *
+ */
+@XmlType(name = "verbindungsTyp")
+@XmlEnum
+public enum VerbindungsTyp {
+
+ VERLUSTSCHEIN,
+ UNBEKANNT;
+
+ public String value() {
+ return name();
+ }
+
+ public static VerbindungsTyp fromValue(String v) {
+ return valueOf(v);
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/VerbindungsTyp.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Verlustschein.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Verlustschein.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Verlustschein.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,642 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+
+/**
+ * <p>Java class for verlustschein complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * <complexType name="verlustschein">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="ausstellDatum" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="ausstellendeBehoerde" type="{http://example.com}ausstellendeBehoerde" minOccurs="0"/>
+ * <element name="bemerkung1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="bemerkung2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="betreibungsNr" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="dateCreated" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="dateModified" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="eresetztVerlustschein" type="{http://example.com}verlustschein" minOccurs="0"/>
+ * <element name="forderungsgrund" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="glaeubigerVerbindung" type="{http://example.com}glaeubigerVerbindung" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="glaeubigerVertreter" type="{http://example.com}glaeubigerVertreter" minOccurs="0"/>
+ * <element name="haftung" type="{http://example.com}haftungArt" minOccurs="0"/>
+ * <element name="herkunftReferenz" type="{http://example.com}herkunftReferenz" minOccurs="0"/>
+ * <element name="mandant" type="{http://example.com}mandant" minOccurs="0"/>
+ * <element name="schuldner" type="{http://example.com}personInterface" minOccurs="0"/>
+ * <element name="status" type="{http://example.com}statusType" minOccurs="0"/>
+ * <element name="userIdCreated" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="userIdModified" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="verjaehrungsfrist" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="verlustscheinArt" type="{http://example.com}verlustscheinArt" minOccurs="0"/>
+ * <element name="verlustscheinId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ * <element name="vsNummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
+ */
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "verlustschein", propOrder = {
+ "ausstellDatum",
+ "ausstellendeBehoerde",
+ "bemerkung1",
+ "bemerkung2",
+ "betreibungsNr",
+ "dateCreated",
+ "dateModified",
+ "eresetztVerlustschein",
+ "forderungsgrund",
+ "glaeubigerVerbindung",
+ "glaeubigerVertreter",
+ "haftung",
+ "herkunftReferenz",
+ "mandant",
+ "schuldner",
+ "status",
+ "userIdCreated",
+ "userIdModified",
+ "verjaehrungsfrist",
+ "verlustscheinArt",
+ "verlustscheinId",
+ "vsNummer"
+})
+public class Verlustschein {
+
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar ausstellDatum;
+ protected AusstellendeBehoerde ausstellendeBehoerde;
+ protected String bemerkung1;
+ protected String bemerkung2;
+ protected String betreibungsNr;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar dateCreated;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar dateModified;
+ protected Verlustschein eresetztVerlustschein;
+ protected String forderungsgrund;
+ @XmlElement(nillable = true)
+ protected List<GlaeubigerVerbindung> glaeubigerVerbindung;
+ protected GlaeubigerVertreter glaeubigerVertreter;
+ protected HaftungArt haftung;
+ protected HerkunftReferenz herkunftReferenz;
+ protected Mandant mandant;
+ protected PersonInterface schuldner;
+ protected StatusType status;
+ protected String userIdCreated;
+ protected String userIdModified;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar verjaehrungsfrist;
+ protected VerlustscheinArt verlustscheinArt;
+ protected Long verlustscheinId;
+ protected String vsNummer;
+
+ /**
+ * Gets the value of the ausstellDatum property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getAusstellDatum() {
+ return ausstellDatum;
+ }
+
+ /**
+ * Sets the value of the ausstellDatum property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setAusstellDatum(XMLGregorianCalendar value) {
+ this.ausstellDatum = value;
+ }
+
+ /**
+ * Gets the value of the ausstellendeBehoerde property.
+ *
+ * @return
+ * possible object is
+ * {@link AusstellendeBehoerde }
+ *
+ */
+ public AusstellendeBehoerde getAusstellendeBehoerde() {
+ return ausstellendeBehoerde;
+ }
+
+ /**
+ * Sets the value of the ausstellendeBehoerde property.
+ *
+ * @param value
+ * allowed object is
+ * {@link AusstellendeBehoerde }
+ *
+ */
+ public void setAusstellendeBehoerde(AusstellendeBehoerde value) {
+ this.ausstellendeBehoerde = value;
+ }
+
+ /**
+ * Gets the value of the bemerkung1 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getBemerkung1() {
+ return bemerkung1;
+ }
+
+ /**
+ * Sets the value of the bemerkung1 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setBemerkung1(String value) {
+ this.bemerkung1 = value;
+ }
+
+ /**
+ * Gets the value of the bemerkung2 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getBemerkung2() {
+ return bemerkung2;
+ }
+
+ /**
+ * Sets the value of the bemerkung2 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setBemerkung2(String value) {
+ this.bemerkung2 = value;
+ }
+
+ /**
+ * Gets the value of the betreibungsNr property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getBetreibungsNr() {
+ return betreibungsNr;
+ }
+
+ /**
+ * Sets the value of the betreibungsNr property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setBetreibungsNr(String value) {
+ this.betreibungsNr = value;
+ }
+
+ /**
+ * Gets the value of the dateCreated property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getDateCreated() {
+ return dateCreated;
+ }
+
+ /**
+ * Sets the value of the dateCreated property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setDateCreated(XMLGregorianCalendar value) {
+ this.dateCreated = value;
+ }
+
+ /**
+ * Gets the value of the dateModified property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getDateModified() {
+ return dateModified;
+ }
+
+ /**
+ * Sets the value of the dateModified property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setDateModified(XMLGregorianCalendar value) {
+ this.dateModified = value;
+ }
+
+ /**
+ * Gets the value of the eresetztVerlustschein property.
+ *
+ * @return
+ * possible object is
+ * {@link Verlustschein }
+ *
+ */
+ public Verlustschein getEresetztVerlustschein() {
+ return eresetztVerlustschein;
+ }
+
+ /**
+ * Sets the value of the eresetztVerlustschein property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Verlustschein }
+ *
+ */
+ public void setEresetztVerlustschein(Verlustschein value) {
+ this.eresetztVerlustschein = value;
+ }
+
+ /**
+ * Gets the value of the forderungsgrund property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getForderungsgrund() {
+ return forderungsgrund;
+ }
+
+ /**
+ * Sets the value of the forderungsgrund property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setForderungsgrund(String value) {
+ this.forderungsgrund = value;
+ }
+
+ /**
+ * Gets the value of the glaeubigerVerbindung property.
+ *
+ * <p>
+ * 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 <CODE>set</CODE> method for the glaeubigerVerbindung property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getGlaeubigerVerbindung().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link GlaeubigerVerbindung }
+ *
+ *
+ */
+ public List<GlaeubigerVerbindung> getGlaeubigerVerbindung() {
+ if (glaeubigerVerbindung == null) {
+ glaeubigerVerbindung = new ArrayList<GlaeubigerVerbindung>();
+ }
+ return this.glaeubigerVerbindung;
+ }
+
+ /**
+ * Gets the value of the glaeubigerVertreter property.
+ *
+ * @return
+ * possible object is
+ * {@link GlaeubigerVertreter }
+ *
+ */
+ public GlaeubigerVertreter getGlaeubigerVertreter() {
+ return glaeubigerVertreter;
+ }
+
+ /**
+ * Sets the value of the glaeubigerVertreter property.
+ *
+ * @param value
+ * allowed object is
+ * {@link GlaeubigerVertreter }
+ *
+ */
+ public void setGlaeubigerVertreter(GlaeubigerVertreter value) {
+ this.glaeubigerVertreter = value;
+ }
+
+ /**
+ * Gets the value of the haftung property.
+ *
+ * @return
+ * possible object is
+ * {@link HaftungArt }
+ *
+ */
+ public HaftungArt getHaftung() {
+ return haftung;
+ }
+
+ /**
+ * Sets the value of the haftung property.
+ *
+ * @param value
+ * allowed object is
+ * {@link HaftungArt }
+ *
+ */
+ public void setHaftung(HaftungArt value) {
+ this.haftung = value;
+ }
+
+ /**
+ * Gets the value of the herkunftReferenz property.
+ *
+ * @return
+ * possible object is
+ * {@link HerkunftReferenz }
+ *
+ */
+ public HerkunftReferenz getHerkunftReferenz() {
+ return herkunftReferenz;
+ }
+
+ /**
+ * Sets the value of the herkunftReferenz property.
+ *
+ * @param value
+ * allowed object is
+ * {@link HerkunftReferenz }
+ *
+ */
+ public void setHerkunftReferenz(HerkunftReferenz value) {
+ this.herkunftReferenz = value;
+ }
+
+ /**
+ * Gets the value of the mandant property.
+ *
+ * @return
+ * possible object is
+ * {@link Mandant }
+ *
+ */
+ public Mandant getMandant() {
+ return mandant;
+ }
+
+ /**
+ * Sets the value of the mandant property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Mandant }
+ *
+ */
+ public void setMandant(Mandant value) {
+ this.mandant = value;
+ }
+
+ /**
+ * Gets the value of the schuldner property.
+ *
+ * @return
+ * possible object is
+ * {@link PersonInterface }
+ *
+ */
+ public PersonInterface getSchuldner() {
+ return schuldner;
+ }
+
+ /**
+ * Sets the value of the schuldner property.
+ *
+ * @param value
+ * allowed object is
+ * {@link PersonInterface }
+ *
+ */
+ public void setSchuldner(PersonInterface value) {
+ this.schuldner = value;
+ }
+
+ /**
+ * Gets the value of the status property.
+ *
+ * @return
+ * possible object is
+ * {@link StatusType }
+ *
+ */
+ public StatusType getStatus() {
+ return status;
+ }
+
+ /**
+ * Sets the value of the status property.
+ *
+ * @param value
+ * allowed object is
+ * {@link StatusType }
+ *
+ */
+ public void setStatus(StatusType value) {
+ this.status = value;
+ }
+
+ /**
+ * Gets the value of the userIdCreated property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUserIdCreated() {
+ return userIdCreated;
+ }
+
+ /**
+ * Sets the value of the userIdCreated property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUserIdCreated(String value) {
+ this.userIdCreated = value;
+ }
+
+ /**
+ * Gets the value of the userIdModified property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUserIdModified() {
+ return userIdModified;
+ }
+
+ /**
+ * Sets the value of the userIdModified property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUserIdModified(String value) {
+ this.userIdModified = value;
+ }
+
+ /**
+ * Gets the value of the verjaehrungsfrist property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getVerjaehrungsfrist() {
+ return verjaehrungsfrist;
+ }
+
+ /**
+ * Sets the value of the verjaehrungsfrist property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setVerjaehrungsfrist(XMLGregorianCalendar value) {
+ this.verjaehrungsfrist = value;
+ }
+
+ /**
+ * Gets the value of the verlustscheinArt property.
+ *
+ * @return
+ * possible object is
+ * {@link VerlustscheinArt }
+ *
+ */
+ public VerlustscheinArt getVerlustscheinArt() {
+ return verlustscheinArt;
+ }
+
+ /**
+ * Sets the value of the verlustscheinArt property.
+ *
+ * @param value
+ * allowed object is
+ * {@link VerlustscheinArt }
+ *
+ */
+ public void setVerlustscheinArt(VerlustscheinArt value) {
+ this.verlustscheinArt = value;
+ }
+
+ /**
+ * Gets the value of the verlustscheinId property.
+ *
+ * @return
+ * possible object is
+ * {@link Long }
+ *
+ */
+ public Long getVerlustscheinId() {
+ return verlustscheinId;
+ }
+
+ /**
+ * Sets the value of the verlustscheinId property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Long }
+ *
+ */
+ public void setVerlustscheinId(Long value) {
+ this.verlustscheinId = value;
+ }
+
+ /**
+ * Gets the value of the vsNummer property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getVsNummer() {
+ return vsNummer;
+ }
+
+ /**
+ * Sets the value of the vsNummer property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setVsNummer(String value) {
+ this.vsNummer = value;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Verlustschein.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/VerlustscheinArt.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/VerlustscheinArt.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/VerlustscheinArt.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,40 @@
+
+package org.jboss.test.ws.jaxws.jbws1857.types;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for verlustscheinArt.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * <simpleType name="verlustscheinArt">
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * <enumeration value="BETREIBUNG"/>
+ * <enumeration value="KONKURS"/>
+ * <enumeration value="UNBEKANNT"/>
+ * </restriction>
+ * </simpleType>
+ * </pre>
+ *
+ */
+@XmlType(name = "verlustscheinArt")
+@XmlEnum
+public enum VerlustscheinArt {
+
+ BETREIBUNG,
+ KONKURS,
+ UNBEKANNT;
+
+ public String value() {
+ return name();
+ }
+
+ public static VerlustscheinArt fromValue(String v) {
+ return valueOf(v);
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/VerlustscheinArt.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/package-info.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/package-info.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/package-info.java 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,2 @@
+(a)javax.xml.bind.annotation.XmlSchema(namespace = "http://example.com")
+package org.jboss.test.ws.jaxws.jbws1857.types;
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/package-info.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/resources/jaxws/jbws1857/StammdatenService.wsdl
===================================================================
--- stack/native/trunk/src/test/resources/jaxws/jbws1857/StammdatenService.wsdl (rev 0)
+++ stack/native/trunk/src/test/resources/jaxws/jbws1857/StammdatenService.wsdl 2008-02-28 10:40:41 UTC (rev 5839)
@@ -0,0 +1,1106 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<definitions name='StammdatenService' targetNamespace='http://example.com' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://example.com' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
+ <types>
+ <xs:schema targetNamespace='http://example.com' version='1.0' xmlns:tns='http://example.com' xmlns:xs='http://www.w3.org/2001/XMLSchema'>
+ <xs:element name='deleteGlaeubiger' type='tns:deleteGlaeubiger'/>
+ <xs:element name='deleteGlaeubigerResponse' type='tns:deleteGlaeubigerResponse'/>
+ <xs:element name='deleteMandant' type='tns:deleteMandant'/>
+ <xs:element name='deleteMandantResponse' type='tns:deleteMandantResponse'/>
+ <xs:element name='deleteMandantUser' type='tns:deleteMandantUser'/>
+ <xs:element name='deleteMandantUserResponse' type='tns:deleteMandantUserResponse'/>
+ <xs:element name='deleteNatPerson' type='tns:deleteNatPerson'/>
+ <xs:element name='deleteNatPersonResponse' type='tns:deleteNatPersonResponse'/>
+ <xs:element name='deleteUser' type='tns:deleteUser'/>
+ <xs:element name='deleteUserResponse' type='tns:deleteUserResponse'/>
+ <xs:element name='fetchGlaeubiger' type='tns:fetchGlaeubiger'/>
+ <xs:element name='fetchGlaeubigerResponse' type='tns:fetchGlaeubigerResponse'/>
+ <xs:element name='fetchMandant' type='tns:fetchMandant'/>
+ <xs:element name='fetchMandantResponse' type='tns:fetchMandantResponse'/>
+ <xs:element name='fetchMandantUser' type='tns:fetchMandantUser'/>
+ <xs:element name='fetchMandantUserResponse' type='tns:fetchMandantUserResponse'/>
+ <xs:element name='fetchNatPerson' type='tns:fetchNatPerson'/>
+ <xs:element name='fetchNatPersonResponse' type='tns:fetchNatPersonResponse'/>
+ <xs:element name='fetchUser' type='tns:fetchUser'/>
+ <xs:element name='fetchUserResponse' type='tns:fetchUserResponse'/>
+ <xs:element name='insertGlaeubiger' type='tns:insertGlaeubiger'/>
+ <xs:element name='insertGlaeubigerResponse' type='tns:insertGlaeubigerResponse'/>
+ <xs:element name='insertMandant' type='tns:insertMandant'/>
+ <xs:element name='insertMandantResponse' type='tns:insertMandantResponse'/>
+ <xs:element name='insertMandantUser' type='tns:insertMandantUser'/>
+ <xs:element name='insertMandantUserResponse' type='tns:insertMandantUserResponse'/>
+ <xs:element name='insertNatPerson' type='tns:insertNatPerson'/>
+ <xs:element name='insertNatPersonResponse' type='tns:insertNatPersonResponse'/>
+ <xs:element name='insertUser' type='tns:insertUser'/>
+ <xs:element name='insertUserResponse' type='tns:insertUserResponse'/>
+ <xs:element name='updateGlaeubiger' type='tns:updateGlaeubiger'/>
+ <xs:element name='updateGlaeubigerResponse' type='tns:updateGlaeubigerResponse'/>
+ <xs:element name='updateMandant' type='tns:updateMandant'/>
+ <xs:element name='updateMandantResponse' type='tns:updateMandantResponse'/>
+ <xs:element name='updateMandantUser' type='tns:updateMandantUser'/>
+ <xs:element name='updateMandantUserResponse' type='tns:updateMandantUserResponse'/>
+ <xs:element name='updateNatPerson' type='tns:updateNatPerson'/>
+ <xs:element name='updateNatPersonResponse' type='tns:updateNatPersonResponse'/>
+ <xs:element name='updateUser' type='tns:updateUser'/>
+ <xs:element name='updateUserResponse' type='tns:updateUserResponse'/>
+ <xs:complexType name='fetchNatPerson'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='arg0' type='tns:natuerlichePerson'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='natuerlichePerson'>
+ <xs:complexContent>
+ <xs:extension base='tns:person'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='aliasName' type='xs:string'/>
+ <xs:element minOccurs='0' name='allianzName' type='xs:string'/>
+ <xs:element minOccurs='0' name='amtlicherName' type='xs:string'/>
+ <xs:element minOccurs='0' name='anredeCode' type='tns:anredeCode'/>
+ <xs:element minOccurs='0' name='geburtsDatum' type='xs:string'/>
+ <xs:element minOccurs='0' name='gesetzlicherVertreter' type='xs:boolean'/>
+ <xs:element minOccurs='0' name='heimatOrt' type='xs:string'/>
+ <xs:element minOccurs='0' name='kanton' type='tns:kantonType'/>
+ <xs:element minOccurs='0' name='landKurzname' type='xs:string'/>
+ <xs:element minOccurs='0' name='ledigenName' type='xs:string'/>
+ <xs:element minOccurs='0' name='nationalitaet' type='tns:nationalitaet'/>
+ <xs:element minOccurs='0' name='nationalitaetStatus' type='tns:nationalitaetStatus'/>
+ <xs:element minOccurs='0' name='rufname' type='xs:string'/>
+ <xs:element minOccurs='0' name='sexType' type='tns:statusType'/>
+ <xs:element minOccurs='0' name='titel' type='xs:string'/>
+ <xs:element minOccurs='0' name='todesDatum' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='vorname' type='xs:string'/>
+ </xs:sequence>
+ </xs:extension>
+ </xs:complexContent>
+ </xs:complexType>
+ <xs:complexType abstract='true' name='person'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='dateCreated' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='dateModified' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='mandant' type='tns:mandant'/>
+ <xs:element maxOccurs='unbounded' minOccurs='0' name='personAdressen' nillable='true' type='tns:personAdresse'/>
+ <xs:element minOccurs='0' name='personId' type='xs:long'/>
+ <xs:element minOccurs='0' name='personInterface' type='tns:personInterface'/>
+ <xs:element minOccurs='0' name='personenArt' type='tns:personenArt'/>
+ <xs:element minOccurs='0' name='sprache' type='tns:languageType'/>
+ <xs:element minOccurs='0' name='umzugDatum' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='userIdCreated' type='xs:string'/>
+ <xs:element minOccurs='0' name='userIdModified' type='xs:string'/>
+ <xs:element minOccurs='0' name='wegzugDatum' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='zuzugDatum' type='xs:dateTime'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='nationalitaet'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='iso2' type='xs:string'/>
+ <xs:element minOccurs='0' name='iso3' type='xs:string'/>
+ <xs:element minOccurs='0' name='landName' type='xs:string'/>
+ <xs:element minOccurs='0' name='nationalitaetId' type='xs:string'/>
+ <xs:element minOccurs='0' name='tcsCode' type='xs:string'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='mandant'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='adminEmail' type='xs:string'/>
+ <xs:element minOccurs='0' name='adresse' type='tns:adresse'/>
+ <xs:element minOccurs='0' name='dateCreated' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='dateModified' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='ekFachApplikation' type='xs:string'/>
+ <xs:element minOccurs='0' name='ekKundenNr' type='xs:string'/>
+ <xs:element minOccurs='0' name='ekTeilnehmer' type='xs:string'/>
+ <xs:element minOccurs='0' name='esrAnschrift1' type='xs:string'/>
+ <xs:element minOccurs='0' name='esrAnschrift2' type='xs:string'/>
+ <xs:element minOccurs='0' name='esrAnschrift3' type='xs:string'/>
+ <xs:element minOccurs='0' name='esrAnschrift4' type='xs:string'/>
+ <xs:element minOccurs='0' name='esrBankAnschrift1' type='xs:string'/>
+ <xs:element minOccurs='0' name='esrBankAnschrift2' type='xs:string'/>
+ <xs:element minOccurs='0' name='esrBankAnschrift3' type='xs:string'/>
+ <xs:element minOccurs='0' name='esrKonto' type='xs:string'/>
+ <xs:element minOccurs='0' name='ibanNr' type='xs:string'/>
+ <xs:element minOccurs='0' name='level_0' type='xs:string'/>
+ <xs:element minOccurs='0' name='level_1' type='xs:string'/>
+ <xs:element minOccurs='0' name='level_2' type='xs:string'/>
+ <xs:element minOccurs='0' name='level_3' type='xs:string'/>
+ <xs:element minOccurs='0' name='level_4' type='xs:string'/>
+ <xs:element minOccurs='0' name='level_5' type='xs:string'/>
+ <xs:element minOccurs='0' name='logo' type='xs:string'/>
+ <xs:element minOccurs='0' name='mandantId' type='xs:long'/>
+ <xs:element minOccurs='0' name='mandantName' type='xs:string'/>
+ <xs:element minOccurs='0' name='mandantName1' type='xs:string'/>
+ <xs:element minOccurs='0' name='mandantName2' type='xs:string'/>
+ <xs:element minOccurs='0' name='sprache' type='tns:languageType'/>
+ <xs:element minOccurs='0' name='status' type='tns:statusType'/>
+ <xs:element minOccurs='0' name='statusDatum' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='topMandant' type='tns:mandant'/>
+ <xs:element minOccurs='0' name='userIdCreated' type='xs:string'/>
+ <xs:element minOccurs='0' name='userIdModified' type='xs:string'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='adresse'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='adressArt' type='tns:adressArt'/>
+ <xs:element minOccurs='0' name='adressTyp' type='tns:adressTyp'/>
+ <xs:element minOccurs='0' name='adressZeile1' type='xs:string'/>
+ <xs:element minOccurs='0' name='adressZeile2' type='xs:string'/>
+ <xs:element minOccurs='0' name='adresseId' type='xs:long'/>
+ <xs:element minOccurs='0' name='bezeichnung1' type='xs:string'/>
+ <xs:element minOccurs='0' name='bezeichnung2' type='xs:string'/>
+ <xs:element minOccurs='0' name='dateCreated' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='dateModified' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='email' type='xs:string'/>
+ <xs:element minOccurs='0' name='fax' type='xs:string'/>
+ <xs:element minOccurs='0' name='gebiet' type='xs:string'/>
+ <xs:element minOccurs='0' name='hausnummer' type='xs:string'/>
+ <xs:element minOccurs='0' name='mandantId' type='xs:long'/>
+ <xs:element minOccurs='0' name='ort' type='xs:string'/>
+ <xs:element minOccurs='0' name='plz' type='xs:string'/>
+ <xs:element minOccurs='0' name='plzAusland' type='xs:string'/>
+ <xs:element minOccurs='0' name='plzZusatz' type='xs:string'/>
+ <xs:element name='postfachNr' type='xs:int'/>
+ <xs:element minOccurs='0' name='postfachText' type='xs:string'/>
+ <xs:element minOccurs='0' name='strasse' type='xs:string'/>
+ <xs:element minOccurs='0' name='telefonGeschaeft' type='xs:string'/>
+ <xs:element minOccurs='0' name='telefonHandy' type='xs:string'/>
+ <xs:element minOccurs='0' name='telefonPrivat' type='xs:string'/>
+ <xs:element minOccurs='0' name='userIdCreated' type='xs:string'/>
+ <xs:element minOccurs='0' name='userIdModified' type='xs:string'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='personAdresse'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='adresse' type='tns:adresse'/>
+ <xs:element minOccurs='0' name='person' type='tns:person'/>
+ <xs:element minOccurs='0' name='verbindungsTyp' type='tns:verbindungsTyp'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='personInterface'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='dateCreated' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='dateModified' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='fremdAnwendung' type='xs:string'/>
+ <xs:element minOccurs='0' name='fremdKey' type='xs:string'/>
+ <xs:element minOccurs='0' name='mandant' type='tns:mandant'/>
+ <xs:element minOccurs='0' name='person' type='tns:person'/>
+ <xs:element minOccurs='0' name='personId' type='xs:long'/>
+ <xs:element minOccurs='0' name='userIdCreated' type='xs:string'/>
+ <xs:element minOccurs='0' name='userIdModified' type='xs:string'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='fetchNatPersonResponse'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='return' type='tns:natPersonResult'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='natPersonResult'>
+ <xs:sequence>
+ <xs:element maxOccurs='unbounded' minOccurs='0' name='errorList' nillable='true' type='xs:anyType'/>
+ <xs:element minOccurs='0' name='natPerson' type='tns:natuerlichePerson'/>
+ <xs:element minOccurs='0' name='serviceStatus' type='tns:serviceStatus'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='serviceStatus'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='correlationId' type='xs:string'/>
+ <xs:element minOccurs='0' name='errorCode' type='tns:errorCode'/>
+ <xs:element minOccurs='0' name='errorScope' type='tns:errorScope'/>
+ <xs:element name='ok' type='xs:boolean'/>
+ <xs:element maxOccurs='unbounded' minOccurs='0' name='parameters' nillable='true' type='xs:string'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='fetchMandant'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='arg0' type='tns:mandant'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='fetchMandantResponse'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='return' type='tns:mandantArrayResult'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='mandantArrayResult'>
+ <xs:sequence>
+ <xs:element maxOccurs='unbounded' minOccurs='0' name='mandantArray' nillable='true' type='tns:mandant'/>
+ <xs:element minOccurs='0' name='serviceStatus' type='tns:serviceStatus'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='updateMandant'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='arg0' type='tns:mandant'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='updateMandantResponse'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='return' type='tns:mandantResult'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='mandantResult'>
+ <xs:sequence>
+ <xs:element maxOccurs='unbounded' minOccurs='0' name='errorList' nillable='true' type='xs:anyType'/>
+ <xs:element minOccurs='0' name='mandant' type='tns:mandant'/>
+ <xs:element minOccurs='0' name='serviceStatus' type='tns:serviceStatus'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='insertMandant'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='arg0' type='tns:mandant'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='insertMandantResponse'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='return' type='tns:mandantResult'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='deleteMandant'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='arg0' type='tns:mandant'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='deleteMandantResponse'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='return' type='tns:mandantResult'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='fetchUser'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='arg0' type='tns:user'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='user'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='dateCreated' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='dateModified' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='gueltigBis' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='gueltigVon' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='kurzzeichen' type='xs:string'/>
+ <xs:element minOccurs='0' name='name' type='xs:string'/>
+ <xs:element minOccurs='0' name='passwort' type='xs:string'/>
+ <xs:element minOccurs='0' name='sprache' type='tns:languageType'/>
+ <xs:element minOccurs='0' name='status' type='tns:statusType'/>
+ <xs:element minOccurs='0' name='statusDatum' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='userId' type='xs:string'/>
+ <xs:element minOccurs='0' name='userIdCreated' type='xs:string'/>
+ <xs:element minOccurs='0' name='userIdModified' type='xs:string'/>
+ <xs:element minOccurs='0' name='vorname' type='xs:string'/>
+ <xs:element minOccurs='0' name='zbBenutzerId' type='xs:string'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='fetchUserResponse'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='return' type='tns:userArrayResult'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='userArrayResult'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='serviceStatus' type='tns:serviceStatus'/>
+ <xs:element maxOccurs='unbounded' minOccurs='0' name='userArray' nillable='true' type='tns:user'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='updateUser'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='arg0' type='tns:user'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='updateUserResponse'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='return' type='tns:userResult'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='userResult'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='serviceStatus' type='tns:serviceStatus'/>
+ <xs:element minOccurs='0' name='user' type='tns:user'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='insertUser'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='arg0' type='tns:user'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='insertUserResponse'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='return' type='tns:userResult'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='deleteUser'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='arg0' type='tns:user'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='deleteUserResponse'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='return' type='tns:userResult'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='fetchGlaeubiger'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='arg0' type='tns:glaeubiger'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='glaeubiger'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='adresse' type='tns:adresse'/>
+ <xs:element minOccurs='0' name='dateCreated' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='dateModified' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='glaeubigerId' type='xs:long'/>
+ <xs:element minOccurs='0' name='glaeubigerName' type='xs:string'/>
+ <xs:element minOccurs='0' name='glaeubigerName1' type='xs:string'/>
+ <xs:element minOccurs='0' name='glaeubigerName2' type='xs:string'/>
+ <xs:element maxOccurs='unbounded' minOccurs='0' name='glaeubigerVerbindung' nillable='true' type='tns:glaeubigerVerbindung'/>
+ <xs:element minOccurs='0' name='gueltigBis' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='gueltigVon' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='mandant' type='tns:mandant'/>
+ <xs:element minOccurs='0' name='sprache' type='tns:languageType'/>
+ <xs:element minOccurs='0' name='status' type='tns:statusType'/>
+ <xs:element minOccurs='0' name='statusDatum' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='userIdCreated' type='xs:string'/>
+ <xs:element minOccurs='0' name='userIdModified' type='xs:string'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='glaeubigerVerbindung'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='dateCreated' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='dateModified' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='glaeubiger' type='tns:glaeubiger'/>
+ <xs:element minOccurs='0' name='quote' type='xs:decimal'/>
+ <xs:element minOccurs='0' name='userIdCreated' type='xs:string'/>
+ <xs:element minOccurs='0' name='userIdModified' type='xs:string'/>
+ <xs:element minOccurs='0' name='verlustschein' type='tns:verlustschein'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='verlustschein'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='ausstellDatum' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='ausstellendeBehoerde' type='tns:ausstellendeBehoerde'/>
+ <xs:element minOccurs='0' name='bemerkung1' type='xs:string'/>
+ <xs:element minOccurs='0' name='bemerkung2' type='xs:string'/>
+ <xs:element minOccurs='0' name='betreibungsNr' type='xs:string'/>
+ <xs:element minOccurs='0' name='dateCreated' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='dateModified' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='eresetztVerlustschein' type='tns:verlustschein'/>
+ <xs:element minOccurs='0' name='forderungsgrund' type='xs:string'/>
+ <xs:element maxOccurs='unbounded' minOccurs='0' name='glaeubigerVerbindung' nillable='true' type='tns:glaeubigerVerbindung'/>
+ <xs:element minOccurs='0' name='glaeubigerVertreter' type='tns:glaeubigerVertreter'/>
+ <xs:element minOccurs='0' name='haftung' type='tns:haftungArt'/>
+ <xs:element minOccurs='0' name='herkunftReferenz' type='tns:herkunftReferenz'/>
+ <xs:element minOccurs='0' name='mandant' type='tns:mandant'/>
+ <xs:element minOccurs='0' name='schuldner' type='tns:personInterface'/>
+ <xs:element minOccurs='0' name='status' type='tns:statusType'/>
+ <xs:element minOccurs='0' name='userIdCreated' type='xs:string'/>
+ <xs:element minOccurs='0' name='userIdModified' type='xs:string'/>
+ <xs:element minOccurs='0' name='verjaehrungsfrist' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='verlustscheinArt' type='tns:verlustscheinArt'/>
+ <xs:element minOccurs='0' name='verlustscheinId' type='xs:long'/>
+ <xs:element minOccurs='0' name='vsNummer' type='xs:string'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='ausstellendeBehoerde'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='adresse' type='tns:adresse'/>
+ <xs:element minOccurs='0' name='amtArt' type='tns:amtArt'/>
+ <xs:element minOccurs='0' name='amtsId' type='xs:long'/>
+ <xs:element minOccurs='0' name='ausstellendeBehoerdeId' type='xs:long'/>
+ <xs:element minOccurs='0' name='dateCreated' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='dateModified' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='mandant' type='tns:mandant'/>
+ <xs:element minOccurs='0' name='userIdCreated' type='xs:string'/>
+ <xs:element minOccurs='0' name='userIdModified' type='xs:string'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='glaeubigerVertreter'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='adresse' type='tns:adresse'/>
+ <xs:element minOccurs='0' name='dateCreated' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='dateModified' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='glaeubigerVertreterId' type='xs:long'/>
+ <xs:element minOccurs='0' name='glaeubigerVertreterName' type='xs:string'/>
+ <xs:element minOccurs='0' name='glaeubigerVertreterName1' type='xs:string'/>
+ <xs:element minOccurs='0' name='glaeubigerVertreterName2' type='xs:string'/>
+ <xs:element minOccurs='0' name='gueltigBis' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='gueltigVon' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='ibanNr' type='xs:string'/>
+ <xs:element minOccurs='0' name='mandant' type='tns:mandant'/>
+ <xs:element minOccurs='0' name='pcKonto' type='xs:string'/>
+ <xs:element minOccurs='0' name='sprache' type='tns:languageType'/>
+ <xs:element minOccurs='0' name='status' type='tns:statusType'/>
+ <xs:element minOccurs='0' name='statusDatum' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='userIdCreated' type='xs:string'/>
+ <xs:element minOccurs='0' name='userIdModified' type='xs:string'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='herkunftReferenz'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='ausloesendeAnwendung' type='xs:string'/>
+ <xs:element minOccurs='0' name='ausloesendeStelleAutomatisch' type='xs:string'/>
+ <xs:element minOccurs='0' name='ausloesendeStelleManuell' type='xs:string'/>
+ <xs:element minOccurs='0' name='ausloesenderSachbearbManuell' type='xs:string'/>
+ <xs:element minOccurs='0' name='ausloesenderSachbearbeiterautomatisch' type='xs:string'/>
+ <xs:element minOccurs='0' name='glaeubigervertreter' type='tns:glaeubigerVertreter'/>
+ <xs:element minOccurs='0' name='herkunftReferenzId' type='xs:long'/>
+ <xs:element minOccurs='0' name='mandant' type='tns:mandant'/>
+ <xs:element minOccurs='0' name='referenzAutomatisch' type='xs:string'/>
+ <xs:element minOccurs='0' name='referenzManuell' type='xs:string'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='fetchGlaeubigerResponse'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='return' type='tns:glaeubigerArrayResult'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='glaeubigerArrayResult'>
+ <xs:sequence>
+ <xs:element maxOccurs='unbounded' minOccurs='0' name='glaeubigerArray' nillable='true' type='tns:glaeubiger'/>
+ <xs:element minOccurs='0' name='serviceStatus' type='tns:serviceStatus'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='updateGlaeubiger'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='arg0' type='tns:glaeubiger'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='updateGlaeubigerResponse'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='return' type='tns:glaeubigerResult'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='glaeubigerResult'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='glaeubiger' type='tns:glaeubiger'/>
+ <xs:element minOccurs='0' name='serviceStatus' type='tns:serviceStatus'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='insertGlaeubiger'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='arg0' type='tns:glaeubiger'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='insertGlaeubigerResponse'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='return' type='tns:glaeubigerResult'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='deleteGlaeubiger'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='arg0' type='tns:glaeubiger'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='deleteGlaeubigerResponse'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='return' type='tns:glaeubigerResult'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='fetchMandantUser'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='arg0' type='tns:mandantUser'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='mandantUser'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='dateCreated' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='dateModified' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='EMail' type='xs:string'/>
+ <xs:element minOccurs='0' name='fax' type='xs:string'/>
+ <xs:element minOccurs='0' name='funktion' type='xs:string'/>
+ <xs:element minOccurs='0' name='gueltigBis' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='gueltigVon' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='mandant' type='tns:mandant'/>
+ <xs:element minOccurs='0' name='status' type='tns:statusType'/>
+ <xs:element minOccurs='0' name='statusDatum' type='xs:dateTime'/>
+ <xs:element minOccurs='0' name='telefon' type='xs:string'/>
+ <xs:element minOccurs='0' name='unterschrift' type='xs:string'/>
+ <xs:element minOccurs='0' name='user' type='tns:user'/>
+ <xs:element minOccurs='0' name='userIdCreated' type='xs:string'/>
+ <xs:element minOccurs='0' name='userIdModified' type='xs:string'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='fetchMandantUserResponse'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='return' type='tns:mandantUserArrayResult'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='mandantUserArrayResult'>
+ <xs:sequence>
+ <xs:element maxOccurs='unbounded' minOccurs='0' name='mandantUser' nillable='true' type='tns:mandantUser'/>
+ <xs:element minOccurs='0' name='serviceStatus' type='tns:serviceStatus'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='deleteMandantUser'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='arg0' type='tns:mandantUser'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='deleteMandantUserResponse'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='return' type='tns:mandantUserResult'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='mandantUserResult'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='mandantUser' type='tns:mandantUser'/>
+ <xs:element minOccurs='0' name='serviceStatus' type='tns:serviceStatus'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='insertMandantUser'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='arg0' type='tns:mandantUser'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='insertMandantUserResponse'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='return' type='tns:mandantUserResult'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='updateMandantUser'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='arg0' type='tns:mandantUser'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='updateMandantUserResponse'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='return' type='tns:mandantUserResult'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='insertNatPerson'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='arg0' type='tns:natuerlichePerson'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='insertNatPersonResponse'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='return' type='tns:natPersonResult'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='updateNatPerson'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='arg0' type='tns:natuerlichePerson'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='updateNatPersonResponse'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='return' type='tns:natPersonResult'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='deleteNatPerson'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='arg0' type='tns:natuerlichePerson'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name='deleteNatPersonResponse'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='return' type='tns:natPersonResult'/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:simpleType name='anredeCode'>
+ <xs:restriction base='xs:string'>
+ <xs:enumeration value='FRAEULEIN'/>
+ <xs:enumeration value='FRAU'/>
+ <xs:enumeration value='HERR'/>
+ <xs:enumeration value='UNBEKANNT'/>
+ </xs:restriction>
+ </xs:simpleType>
+ <xs:simpleType name='kantonType'>
+ <xs:restriction base='xs:string'>
+ <xs:enumeration value='JU'/>
+ <xs:enumeration value='GE'/>
+ <xs:enumeration value='NE'/>
+ <xs:enumeration value='VS'/>
+ <xs:enumeration value='VD'/>
+ <xs:enumeration value='TI'/>
+ <xs:enumeration value='TG'/>
+ <xs:enumeration value='AG'/>
+ <xs:enumeration value='GR'/>
+ <xs:enumeration value='SG'/>
+ <xs:enumeration value='AI'/>
+ <xs:enumeration value='AR'/>
+ <xs:enumeration value='SH'/>
+ <xs:enumeration value='BL'/>
+ <xs:enumeration value='BS'/>
+ <xs:enumeration value='SO'/>
+ <xs:enumeration value='FR'/>
+ <xs:enumeration value='ZG'/>
+ <xs:enumeration value='GL'/>
+ <xs:enumeration value='NW'/>
+ <xs:enumeration value='OW'/>
+ <xs:enumeration value='SZ'/>
+ <xs:enumeration value='UR'/>
+ <xs:enumeration value='LU'/>
+ <xs:enumeration value='BE'/>
+ <xs:enumeration value='ZH'/>
+ </xs:restriction>
+ </xs:simpleType>
+ <xs:simpleType name='nationalitaetStatus'>
+ <xs:restriction base='xs:string'>
+ <xs:enumeration value='INAKTIV'/>
+ <xs:enumeration value='AKTIV'/>
+ <xs:enumeration value='UNBEKANNT'/>
+ </xs:restriction>
+ </xs:simpleType>
+ <xs:simpleType name='statusType'>
+ <xs:restriction base='xs:string'>
+ <xs:enumeration value='INAKTIV'/>
+ <xs:enumeration value='AKTIV'/>
+ </xs:restriction>
+ </xs:simpleType>
+ <xs:simpleType name='adressArt'>
+ <xs:restriction base='xs:string'>
+ <xs:enumeration value='KORRESPONDENZADRESSE'/>
+ <xs:enumeration value='WOHNADRESSE'/>
+ <xs:enumeration value='UNBEKANNT'/>
+ </xs:restriction>
+ </xs:simpleType>
+ <xs:simpleType name='adressTyp'>
+ <xs:restriction base='xs:string'>
+ <xs:enumeration value='SCHULDNER'/>
+ <xs:enumeration value='AUSSTELLENDE_BEHOERDE'/>
+ <xs:enumeration value='BETREIBUNGS_KONKURSAMT'/>
+ <xs:enumeration value='GLAEUBIGER_VERTRETER'/>
+ <xs:enumeration value='GLAEUBIGER'/>
+ <xs:enumeration value='MANDANT'/>
+ </xs:restriction>
+ </xs:simpleType>
+ <xs:simpleType name='languageType'>
+ <xs:restriction base='xs:string'>
+ <xs:enumeration value='IT'/>
+ <xs:enumeration value='FR'/>
+ <xs:enumeration value='DE'/>
+ </xs:restriction>
+ </xs:simpleType>
+ <xs:simpleType name='verbindungsTyp'>
+ <xs:restriction base='xs:string'>
+ <xs:enumeration value='VERLUSTSCHEIN'/>
+ <xs:enumeration value='UNBEKANNT'/>
+ </xs:restriction>
+ </xs:simpleType>
+ <xs:simpleType name='personenArt'>
+ <xs:restriction base='xs:string'>
+ <xs:enumeration value='NATUERLICH'/>
+ <xs:enumeration value='JURISTISCH'/>
+ </xs:restriction>
+ </xs:simpleType>
+ <xs:simpleType name='errorCode'>
+ <xs:restriction base='xs:string'>
+ <xs:enumeration value='VALIDATION_EXCEPTION'/>
+ <xs:enumeration value='BUSINESS_WARNING'/>
+ <xs:enumeration value='HOST_BUSINESS_EXCEPTION_1'/>
+ <xs:enumeration value='DEFAULT_TECHNICAL_EXCEPTION'/>
+ </xs:restriction>
+ </xs:simpleType>
+ <xs:simpleType name='errorScope'>
+ <xs:restriction base='xs:string'>
+ <xs:enumeration value='VICLIENT'/>
+ <xs:enumeration value='HOST'/>
+ <xs:enumeration value='VIAPP'/>
+ </xs:restriction>
+ </xs:simpleType>
+ <xs:simpleType name='amtArt'>
+ <xs:restriction base='xs:string'>
+ <xs:enumeration value='KONKURSAMT'/>
+ <xs:enumeration value='BETREIBUNGSAMT'/>
+ <xs:enumeration value='UNBEKANNT'/>
+ </xs:restriction>
+ </xs:simpleType>
+ <xs:simpleType name='haftungArt'>
+ <xs:restriction base='xs:string'>
+ <xs:enumeration value='SOLIDARHAFTUNG'/>
+ <xs:enumeration value='EINZELHAFTUNG'/>
+ <xs:enumeration value='UNBEKANNT'/>
+ </xs:restriction>
+ </xs:simpleType>
+ <xs:simpleType name='verlustscheinArt'>
+ <xs:restriction base='xs:string'>
+ <xs:enumeration value='BETREIBUNG'/>
+ <xs:enumeration value='KONKURS'/>
+ <xs:enumeration value='UNBEKANNT'/>
+ </xs:restriction>
+ </xs:simpleType>
+ </xs:schema>
+ </types>
+ <message name='Stammdaten_deleteGlaeubiger'>
+ <part element='tns:deleteGlaeubiger' name='deleteGlaeubiger'/>
+ </message>
+ <message name='Stammdaten_deleteGlaeubigerResponse'>
+ <part element='tns:deleteGlaeubigerResponse' name='deleteGlaeubigerResponse'/>
+ </message>
+ <message name='Stammdaten_deleteMandant'>
+ <part element='tns:deleteMandant' name='deleteMandant'/>
+ </message>
+ <message name='Stammdaten_deleteMandantResponse'>
+ <part element='tns:deleteMandantResponse' name='deleteMandantResponse'/>
+ </message>
+ <message name='Stammdaten_deleteMandantUser'>
+ <part element='tns:deleteMandantUser' name='deleteMandantUser'/>
+ </message>
+ <message name='Stammdaten_deleteMandantUserResponse'>
+ <part element='tns:deleteMandantUserResponse' name='deleteMandantUserResponse'/>
+ </message>
+ <message name='Stammdaten_deleteNatPerson'>
+ <part element='tns:deleteNatPerson' name='deleteNatPerson'/>
+ </message>
+ <message name='Stammdaten_deleteNatPersonResponse'>
+ <part element='tns:deleteNatPersonResponse' name='deleteNatPersonResponse'/>
+ </message>
+ <message name='Stammdaten_deleteUser'>
+ <part element='tns:deleteUser' name='deleteUser'/>
+ </message>
+ <message name='Stammdaten_deleteUserResponse'>
+ <part element='tns:deleteUserResponse' name='deleteUserResponse'/>
+ </message>
+ <message name='Stammdaten_fetchGlaeubiger'>
+ <part element='tns:fetchGlaeubiger' name='fetchGlaeubiger'/>
+ </message>
+ <message name='Stammdaten_fetchGlaeubigerResponse'>
+ <part element='tns:fetchGlaeubigerResponse' name='fetchGlaeubigerResponse'/>
+ </message>
+ <message name='Stammdaten_fetchMandant'>
+ <part element='tns:fetchMandant' name='fetchMandant'/>
+ </message>
+ <message name='Stammdaten_fetchMandantResponse'>
+ <part element='tns:fetchMandantResponse' name='fetchMandantResponse'/>
+ </message>
+ <message name='Stammdaten_fetchMandantUser'>
+ <part element='tns:fetchMandantUser' name='fetchMandantUser'/>
+ </message>
+ <message name='Stammdaten_fetchMandantUserResponse'>
+ <part element='tns:fetchMandantUserResponse' name='fetchMandantUserResponse'/>
+ </message>
+ <message name='Stammdaten_fetchNatPerson'>
+ <part element='tns:fetchNatPerson' name='fetchNatPerson'/>
+ </message>
+ <message name='Stammdaten_fetchNatPersonResponse'>
+ <part element='tns:fetchNatPersonResponse' name='fetchNatPersonResponse'/>
+ </message>
+ <message name='Stammdaten_fetchUser'>
+ <part element='tns:fetchUser' name='fetchUser'/>
+ </message>
+ <message name='Stammdaten_fetchUserResponse'>
+ <part element='tns:fetchUserResponse' name='fetchUserResponse'/>
+ </message>
+ <message name='Stammdaten_insertGlaeubiger'>
+ <part element='tns:insertGlaeubiger' name='insertGlaeubiger'/>
+ </message>
+ <message name='Stammdaten_insertGlaeubigerResponse'>
+ <part element='tns:insertGlaeubigerResponse' name='insertGlaeubigerResponse'/>
+ </message>
+ <message name='Stammdaten_insertMandant'>
+ <part element='tns:insertMandant' name='insertMandant'/>
+ </message>
+ <message name='Stammdaten_insertMandantResponse'>
+ <part element='tns:insertMandantResponse' name='insertMandantResponse'/>
+ </message>
+ <message name='Stammdaten_insertMandantUser'>
+ <part element='tns:insertMandantUser' name='insertMandantUser'/>
+ </message>
+ <message name='Stammdaten_insertMandantUserResponse'>
+ <part element='tns:insertMandantUserResponse' name='insertMandantUserResponse'/>
+ </message>
+ <message name='Stammdaten_insertNatPerson'>
+ <part element='tns:insertNatPerson' name='insertNatPerson'/>
+ </message>
+ <message name='Stammdaten_insertNatPersonResponse'>
+ <part element='tns:insertNatPersonResponse' name='insertNatPersonResponse'/>
+ </message>
+ <message name='Stammdaten_insertUser'>
+ <part element='tns:insertUser' name='insertUser'/>
+ </message>
+ <message name='Stammdaten_insertUserResponse'>
+ <part element='tns:insertUserResponse' name='insertUserResponse'/>
+ </message>
+ <message name='Stammdaten_updateGlaeubiger'>
+ <part element='tns:updateGlaeubiger' name='updateGlaeubiger'/>
+ </message>
+ <message name='Stammdaten_updateGlaeubigerResponse'>
+ <part element='tns:updateGlaeubigerResponse' name='updateGlaeubigerResponse'/>
+ </message>
+ <message name='Stammdaten_updateMandant'>
+ <part element='tns:updateMandant' name='updateMandant'/>
+ </message>
+ <message name='Stammdaten_updateMandantResponse'>
+ <part element='tns:updateMandantResponse' name='updateMandantResponse'/>
+ </message>
+ <message name='Stammdaten_updateMandantUser'>
+ <part element='tns:updateMandantUser' name='updateMandantUser'/>
+ </message>
+ <message name='Stammdaten_updateMandantUserResponse'>
+ <part element='tns:updateMandantUserResponse' name='updateMandantUserResponse'/>
+ </message>
+ <message name='Stammdaten_updateNatPerson'>
+ <part element='tns:updateNatPerson' name='updateNatPerson'/>
+ </message>
+ <message name='Stammdaten_updateNatPersonResponse'>
+ <part element='tns:updateNatPersonResponse' name='updateNatPersonResponse'/>
+ </message>
+ <message name='Stammdaten_updateUser'>
+ <part element='tns:updateUser' name='updateUser'/>
+ </message>
+ <message name='Stammdaten_updateUserResponse'>
+ <part element='tns:updateUserResponse' name='updateUserResponse'/>
+ </message>
+ <portType name='Stammdaten'>
+ <operation name='deleteGlaeubiger' parameterOrder='deleteGlaeubiger'>
+ <input message='tns:Stammdaten_deleteGlaeubiger'/>
+ <output message='tns:Stammdaten_deleteGlaeubigerResponse'/>
+ </operation>
+ <operation name='deleteMandant' parameterOrder='deleteMandant'>
+ <input message='tns:Stammdaten_deleteMandant'/>
+ <output message='tns:Stammdaten_deleteMandantResponse'/>
+ </operation>
+ <operation name='deleteMandantUser' parameterOrder='deleteMandantUser'>
+ <input message='tns:Stammdaten_deleteMandantUser'/>
+ <output message='tns:Stammdaten_deleteMandantUserResponse'/>
+ </operation>
+ <operation name='deleteNatPerson' parameterOrder='deleteNatPerson'>
+ <input message='tns:Stammdaten_deleteNatPerson'/>
+ <output message='tns:Stammdaten_deleteNatPersonResponse'/>
+ </operation>
+ <operation name='deleteUser' parameterOrder='deleteUser'>
+ <input message='tns:Stammdaten_deleteUser'/>
+ <output message='tns:Stammdaten_deleteUserResponse'/>
+ </operation>
+ <operation name='fetchGlaeubiger' parameterOrder='fetchGlaeubiger'>
+ <input message='tns:Stammdaten_fetchGlaeubiger'/>
+ <output message='tns:Stammdaten_fetchGlaeubigerResponse'/>
+ </operation>
+ <operation name='fetchMandant' parameterOrder='fetchMandant'>
+ <input message='tns:Stammdaten_fetchMandant'/>
+ <output message='tns:Stammdaten_fetchMandantResponse'/>
+ </operation>
+ <operation name='fetchMandantUser' parameterOrder='fetchMandantUser'>
+ <input message='tns:Stammdaten_fetchMandantUser'/>
+ <output message='tns:Stammdaten_fetchMandantUserResponse'/>
+ </operation>
+ <operation name='fetchNatPerson' parameterOrder='fetchNatPerson'>
+ <input message='tns:Stammdaten_fetchNatPerson'/>
+ <output message='tns:Stammdaten_fetchNatPersonResponse'/>
+ </operation>
+ <operation name='fetchUser' parameterOrder='fetchUser'>
+ <input message='tns:Stammdaten_fetchUser'/>
+ <output message='tns:Stammdaten_fetchUserResponse'/>
+ </operation>
+ <operation name='insertGlaeubiger' parameterOrder='insertGlaeubiger'>
+ <input message='tns:Stammdaten_insertGlaeubiger'/>
+ <output message='tns:Stammdaten_insertGlaeubigerResponse'/>
+ </operation>
+ <operation name='insertMandant' parameterOrder='insertMandant'>
+ <input message='tns:Stammdaten_insertMandant'/>
+ <output message='tns:Stammdaten_insertMandantResponse'/>
+ </operation>
+ <operation name='insertMandantUser' parameterOrder='insertMandantUser'>
+ <input message='tns:Stammdaten_insertMandantUser'/>
+ <output message='tns:Stammdaten_insertMandantUserResponse'/>
+ </operation>
+ <operation name='insertNatPerson' parameterOrder='insertNatPerson'>
+ <input message='tns:Stammdaten_insertNatPerson'/>
+ <output message='tns:Stammdaten_insertNatPersonResponse'/>
+ </operation>
+ <operation name='insertUser' parameterOrder='insertUser'>
+ <input message='tns:Stammdaten_insertUser'/>
+ <output message='tns:Stammdaten_insertUserResponse'/>
+ </operation>
+ <operation name='updateGlaeubiger' parameterOrder='updateGlaeubiger'>
+ <input message='tns:Stammdaten_updateGlaeubiger'/>
+ <output message='tns:Stammdaten_updateGlaeubigerResponse'/>
+ </operation>
+ <operation name='updateMandant' parameterOrder='updateMandant'>
+ <input message='tns:Stammdaten_updateMandant'/>
+ <output message='tns:Stammdaten_updateMandantResponse'/>
+ </operation>
+ <operation name='updateMandantUser' parameterOrder='updateMandantUser'>
+ <input message='tns:Stammdaten_updateMandantUser'/>
+ <output message='tns:Stammdaten_updateMandantUserResponse'/>
+ </operation>
+ <operation name='updateNatPerson' parameterOrder='updateNatPerson'>
+ <input message='tns:Stammdaten_updateNatPerson'/>
+ <output message='tns:Stammdaten_updateNatPersonResponse'/>
+ </operation>
+ <operation name='updateUser' parameterOrder='updateUser'>
+ <input message='tns:Stammdaten_updateUser'/>
+ <output message='tns:Stammdaten_updateUserResponse'/>
+ </operation>
+ </portType>
+ <binding name='StammdatenBinding' type='tns:Stammdaten'>
+ <soap:binding style='document' transport='http://schemas.xmlsoap.org/soap/http'/>
+ <operation name='deleteGlaeubiger'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body use='literal'/>
+ </input>
+ <output>
+ <soap:body use='literal'/>
+ </output>
+ </operation>
+ <operation name='deleteMandant'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body use='literal'/>
+ </input>
+ <output>
+ <soap:body use='literal'/>
+ </output>
+ </operation>
+ <operation name='deleteMandantUser'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body use='literal'/>
+ </input>
+ <output>
+ <soap:body use='literal'/>
+ </output>
+ </operation>
+ <operation name='deleteNatPerson'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body use='literal'/>
+ </input>
+ <output>
+ <soap:body use='literal'/>
+ </output>
+ </operation>
+ <operation name='deleteUser'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body use='literal'/>
+ </input>
+ <output>
+ <soap:body use='literal'/>
+ </output>
+ </operation>
+ <operation name='fetchGlaeubiger'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body use='literal'/>
+ </input>
+ <output>
+ <soap:body use='literal'/>
+ </output>
+ </operation>
+ <operation name='fetchMandant'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body use='literal'/>
+ </input>
+ <output>
+ <soap:body use='literal'/>
+ </output>
+ </operation>
+ <operation name='fetchMandantUser'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body use='literal'/>
+ </input>
+ <output>
+ <soap:body use='literal'/>
+ </output>
+ </operation>
+ <operation name='fetchNatPerson'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body use='literal'/>
+ </input>
+ <output>
+ <soap:body use='literal'/>
+ </output>
+ </operation>
+ <operation name='fetchUser'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body use='literal'/>
+ </input>
+ <output>
+ <soap:body use='literal'/>
+ </output>
+ </operation>
+ <operation name='insertGlaeubiger'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body use='literal'/>
+ </input>
+ <output>
+ <soap:body use='literal'/>
+ </output>
+ </operation>
+ <operation name='insertMandant'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body use='literal'/>
+ </input>
+ <output>
+ <soap:body use='literal'/>
+ </output>
+ </operation>
+ <operation name='insertMandantUser'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body use='literal'/>
+ </input>
+ <output>
+ <soap:body use='literal'/>
+ </output>
+ </operation>
+ <operation name='insertNatPerson'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body use='literal'/>
+ </input>
+ <output>
+ <soap:body use='literal'/>
+ </output>
+ </operation>
+ <operation name='insertUser'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body use='literal'/>
+ </input>
+ <output>
+ <soap:body use='literal'/>
+ </output>
+ </operation>
+ <operation name='updateGlaeubiger'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body use='literal'/>
+ </input>
+ <output>
+ <soap:body use='literal'/>
+ </output>
+ </operation>
+ <operation name='updateMandant'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body use='literal'/>
+ </input>
+ <output>
+ <soap:body use='literal'/>
+ </output>
+ </operation>
+ <operation name='updateMandantUser'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body use='literal'/>
+ </input>
+ <output>
+ <soap:body use='literal'/>
+ </output>
+ </operation>
+ <operation name='updateNatPerson'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body use='literal'/>
+ </input>
+ <output>
+ <soap:body use='literal'/>
+ </output>
+ </operation>
+ <operation name='updateUser'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body use='literal'/>
+ </input>
+ <output>
+ <soap:body use='literal'/>
+ </output>
+ </operation>
+ </binding>
+ <service name='StammdatenService'>
+ <port binding='tns:StammdatenBinding' name='StammdatenPort'>
+ <soap:address location='REPLACE_WITH_ACTUAL_URL'/>
+ </port>
+ </service>
+</definitions>
\ No newline at end of file
Property changes on: stack/native/trunk/src/test/resources/jaxws/jbws1857/StammdatenService.wsdl
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
16 years, 10 months
JBossWS SVN: r5838 - in stack/cxf/trunk: ant-import and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-02-28 05:05:06 -0500 (Thu, 28 Feb 2008)
New Revision: 5838
Modified:
stack/cxf/trunk/ant-import/build-release.xml
stack/cxf/trunk/version.properties
Log:
Fix release targets
Modified: stack/cxf/trunk/ant-import/build-release.xml
===================================================================
--- stack/cxf/trunk/ant-import/build-release.xml 2008-02-28 10:04:59 UTC (rev 5837)
+++ stack/cxf/trunk/ant-import/build-release.xml 2008-02-28 10:05:06 UTC (rev 5838)
@@ -13,25 +13,104 @@
<project>
- <!-- Release to jboss.local.repository -->
- <target name="release" depends="jars"
+ <target name="release" depends="release-to-repository,release-to-portal" description="Release JBossWS/CXF">
+ <echo message="*********************************************"/>
+ <echo message="* Released: jbossws-${version.id}"/>
+ <echo message="*"/>
+ <echo message="* Almost there, please do these steps manually"/>
+ <echo message="*"/>
+ <echo message="* - Create SVN tag: jbossws-${version.id}"/>
+ <echo message="* - Release the jbossws-${version.id} version in JIRA"/>
+ <echo message="* - Update portal-content/project.xml"/>
+ <echo message="* - Update portal-content/counter.xml"/>
+ <echo message="* - Update news in portal-content/freezone/projectDescription.html"/>
+ <echo message="* - Verify release notes and install instructions"/>
+ <echo message="* - Publish the interop endpoints"/>
+ <echo message="* - Commit the portal-content"/>
+ <echo message="* - Commit the repository jars"/>
+ <echo message="* - Write a sticky post on the user forum"/>
+ <echo message="* - Post a message to jbossws-announce(a)lists.jboss.org"/>
+ <echo message="* - Post a message to thecore(a)jboss.org"/>
+ <echo message="*"/>
+ <echo message="*********************************************"/>
+ </target>
+
+ <target name="release-to-repository" depends="jars,check-svn-externals,warn-svn-externals"
description="Release to jboss.local.repository">
- <!-- jboss/jbossws-cxf50 -->
- <property name="jboss.repository.dir" value="${jboss.local.repository}/jboss"/>
- <mkdir dir="${jboss.repository.dir}/jbossws-cxf50/${repository.id}/lib"/>
- <copy todir="${jboss.repository.dir}/jbossws-cxf50/${repository.id}/lib" overwrite="true">
- <fileset dir="${int.cxf.dir}/output/lib">
- <include name="jbossws-cxf50.sar"/>
- <include name="jbossws-cxf50-deployer.zip"/>
+ <echo>No need to release jbossws-cxf to the repository</echo>
+
+ </target>
+
+ <target name="check-svn-externals" depends="init">
+ <exec dir="${basedir}/src/test-framework" executable="svn" failonerror="true" output="${basedir}/output/svn-info.xml">
+ <arg line="info"/>
+ <arg line="--xml"/>
+ </exec>
+ <xmlproperty file="${basedir}/output/svn-info.xml"/>
+ <condition property="framework.externals.ok">
+ <or>
+ <contains string="${info.entry.url}" substring="jbossws/framework/tags"/>
+ <equals arg1="${repository.id}" arg2="snapshot"/>
+ </or>
+ </condition>
+ </target>
+ <target name="warn-svn-externals" depends="init" unless="framework.externals.ok">
+ <echo>
+ ***********************************************
+ * External link to framework is not tagged! *
+ * Run: svn pe svn:externals src *
+ ***********************************************
+ </echo>
+ </target>
+
+ <!-- Release to portal content -->
+ <target name="release-to-portal" depends="check-portal-content,build-src-dist,build-bin-dist"
+ description="Release to portal-content" if="jbossws.portal.content.available">
+
+ <property name="portal.freezone" value="${jbossws.portal.content}/freezone"/>
+ <property name="portal.userguide" value="${portal.freezone}/user-guide"/>
+ <property name="portal.downloads" value="${jbossws.portal.content}/downloads"/>
+
+ <!-- Copy downloads -->
+ <copy todir="${portal.downloads}" overwrite="true">
+ <fileset dir="${basedir}/output">
+ <include name="jbossws-${version.id}-src.zip"/>
+ <include name="jbossws-${version.id}.zip"/>
</fileset>
</copy>
- <copy tofile="${jboss.repository.dir}/jbossws-cxf50/${repository.id}/component-info.xml" file="${cxf.etc.dir}/component-info50.xml" filtering="true" overwrite="true">
- <filterset>
- <filtersfile file="${build.dir}/version.properties"/>
- </filterset>
+
+ <!-- Copy Release Notes -->
+ <copy tofile="${portal.downloads}/ReleaseNotes-${version.id}.txt" file="${bindist.docs.dir}/ReleaseNotes.txt" overwrite="true"/>
+ <copy tofile="${portal.downloads}/Install-${version.id}.txt" file="${bindist.docs.dir}/Install.txt" overwrite="true"/>
+ </target>
+
+ <target name="check-portal-content" depends="prepare" unless="jbossws.portal.content.available">
+ <echo message="*********************************************"/>
+ <echo message="* Not available: ${jbossws.portal.content}"/>
+ <echo message="*********************************************"/>
+ </target>
+
+ <!-- ================================================================== -->
+ <!-- Build source distributions -->
+ <!-- ================================================================== -->
+
+ <target name="build-src-dist" description="Build the source distribution">
+ <property name="build.src.dist" value="${basedir}/output/src-dist"/>
+ <delete dir="${build.src.dist}/jbossws-${version.id}-src"/>
+ <mkdir dir="${build.src.dist}/jbossws-${version.id}-src"/>
+ <copy todir="${build.src.dist}/jbossws-${version.id}-src">
+ <fileset dir="${basedir}">
+ <exclude name="**/*.md5"/>
+ <exclude name="**/output*/**"/>
+ <exclude name="**/thirdparty/**"/>
+ <exclude name="mergeinfo.txt"/>
+ <exclude name="ant.properties"/>
+ <exclude name="apache-cxf/**"/>
+ </fileset>
</copy>
-
+ <zip destfile="${basedir}/output/jbossws-${version.id}-src.zip" basedir="${build.src.dist}"
+ includes="jbossws-${version.id}-src/**"/>
</target>
-
+
</project>
Modified: stack/cxf/trunk/version.properties
===================================================================
--- stack/cxf/trunk/version.properties 2008-02-28 10:04:59 UTC (rev 5837)
+++ stack/cxf/trunk/version.properties 2008-02-28 10:05:06 UTC (rev 5838)
@@ -6,7 +6,7 @@
specification.version=jbossws-3.0
version.id=3.0.1-cxf-1.0.1.GA
-repository.id=snapshot
+repository.id=3.0.1-cxf-1.0.1.GA
implementation.title=JBoss Web Services - Apache CXF
implementation.url=http://www.jboss.org/products/jbossws
16 years, 10 months
JBossWS SVN: r5837 - in stack/metro/trunk: ant-import and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-02-28 05:04:59 -0500 (Thu, 28 Feb 2008)
New Revision: 5837
Modified:
stack/metro/trunk/
stack/metro/trunk/ant-import/build-release.xml
stack/metro/trunk/version.properties
Log:
Fix release targets
Property changes on: stack/metro/trunk
___________________________________________________________________
Name: svn:ignore
- output
version.properties.md5
thirdparty
ant.properties
glassfish-metro
cvs
thirdparty-gen
checkout_id-*
+ output
version.properties.md5
thirdparty
ant.properties
glassfish-metro
Modified: stack/metro/trunk/ant-import/build-release.xml
===================================================================
--- stack/metro/trunk/ant-import/build-release.xml 2008-02-28 10:03:44 UTC (rev 5836)
+++ stack/metro/trunk/ant-import/build-release.xml 2008-02-28 10:04:59 UTC (rev 5837)
@@ -37,22 +37,9 @@
<target name="release-to-repository" depends="jars,check-svn-externals,warn-svn-externals"
description="Release to jboss.local.repository">
-
- <!-- jboss/jbossws-metro50 -->
- <property name="jboss.repository.dir" value="${jboss.local.repository}/jboss"/>
- <mkdir dir="${jboss.repository.dir}/jbossws-metro50/${repository.id}/lib"/>
- <copy todir="${jboss.repository.dir}/jbossws-metro50/${repository.id}/lib" overwrite="true">
- <fileset dir="${int.metro.dir}/output/lib">
- <include name="jbossws-metro50.sar"/>
- <include name="jbossws-metro50-deployer.zip"/>
- </fileset>
- </copy>
- <copy tofile="${jboss.repository.dir}/jbossws-metro50/${repository.id}/component-info.xml" file="${metro.etc.dir}/component-info50.xml" filtering="true" overwrite="true">
- <filterset>
- <filtersfile file="${basedir}/version.properties"/>
- </filterset>
- </copy>
-
+
+ <echo>No need to release jbossws-metro to the repository</echo>
+
</target>
<target name="check-svn-externals" depends="init">
@@ -94,8 +81,8 @@
</copy>
<!-- Copy Release Notes -->
- <copy tofile="${portal.downloads}/ReleaseNotes-${version.id}.txt" file="${basedir}/output/jbossws-${version.id}/docs/ReleaseNotes.txt" overwrite="true"/>
- <copy tofile="${portal.downloads}/Install-${version.id}.txt" file="${basedir}/output/jbossws-${version.id}/docs/Install.txt" overwrite="true"/>
+ <copy tofile="${portal.downloads}/ReleaseNotes-${version.id}.txt" file="${bindist.docs.dir}/ReleaseNotes.txt" overwrite="true"/>
+ <copy tofile="${portal.downloads}/Install-${version.id}.txt" file="${bindist.docs.dir}/Install.txt" overwrite="true"/>
</target>
<target name="check-portal-content" depends="prepare" unless="jbossws.portal.content.available">
@@ -104,7 +91,10 @@
<echo message="*********************************************"/>
</target>
- <!-- Build the src dist -->
+ <!-- ================================================================== -->
+ <!-- Build source distributions -->
+ <!-- ================================================================== -->
+
<target name="build-src-dist" description="Build the source distribution">
<property name="build.src.dist" value="${basedir}/output/src-dist"/>
<delete dir="${build.src.dist}/jbossws-${version.id}-src"/>
Modified: stack/metro/trunk/version.properties
===================================================================
--- stack/metro/trunk/version.properties 2008-02-28 10:03:44 UTC (rev 5836)
+++ stack/metro/trunk/version.properties 2008-02-28 10:04:59 UTC (rev 5837)
@@ -6,7 +6,7 @@
specification.version=jbossws-3.0
version.id=3.0.1-metro-1.0.1.GA
-repository.id=snapshot
+repository.id=3.0.1-metro-1.0.1.GA
implementation.title=JBoss Web Services - Sun Metro
implementation.url=http://www.jboss.org/products/jbossws
16 years, 10 months
JBossWS SVN: r5836 - in stack/native/trunk: ant-import and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-02-28 05:03:44 -0500 (Thu, 28 Feb 2008)
New Revision: 5836
Modified:
stack/native/trunk/ant-import/build-release.xml
stack/native/trunk/version.properties
Log:
Fix relase targets
Modified: stack/native/trunk/ant-import/build-release.xml
===================================================================
--- stack/native/trunk/ant-import/build-release.xml 2008-02-28 10:00:54 UTC (rev 5835)
+++ stack/native/trunk/ant-import/build-release.xml 2008-02-28 10:03:44 UTC (rev 5836)
@@ -13,7 +13,7 @@
<project>
- <target name="release" depends="release-to-repository,release-to-portal" description="Release JBossWS">
+ <target name="release" depends="release-to-repository,release-to-portal" description="Release JBossWS/Native">
<echo message="*********************************************"/>
<echo message="* Released: jbossws-${version.id}"/>
<echo message="*"/>
@@ -35,7 +35,6 @@
<echo message="*********************************************"/>
</target>
- <!-- Release to jboss.local.repository -->
<target name="release-to-repository" depends="jars,check-svn-externals,warn-svn-externals"
description="Release to jboss.local.repository">
@@ -112,7 +111,7 @@
***********************************************
</echo>
</target>
-
+
<!-- Release to portal content -->
<target name="release-to-portal" depends="check-portal-content,build-src-dist,build-bin-dist"
description="Release to portal-content" if="jbossws.portal.content.available">
@@ -123,15 +122,15 @@
<!-- Copy downloads -->
<copy todir="${portal.downloads}" overwrite="true">
- <fileset dir="${core.dir}/output">
+ <fileset dir="${basedir}/output">
<include name="jbossws-${version.id}-src.zip"/>
<include name="jbossws-${version.id}.zip"/>
</fileset>
</copy>
<!-- Copy Release Notes -->
- <copy tofile="${portal.downloads}/ReleaseNotes-${version.id}.txt" file="${core.dir}/output/jbossws-${version.id}/docs/ReleaseNotes.txt" overwrite="true"/>
- <copy tofile="${portal.downloads}/Install-${version.id}.txt" file="${core.dir}/output/jbossws-${version.id}/docs/Install.txt" overwrite="true"/>
+ <copy tofile="${portal.downloads}/ReleaseNotes-${version.id}.txt" file="${bindist.docs.dir}/ReleaseNotes.txt" overwrite="true"/>
+ <copy tofile="${portal.downloads}/Install-${version.id}.txt" file="${bindist.docs.dir}/Install.txt" overwrite="true"/>
</target>
<target name="check-portal-content" depends="prepare" unless="jbossws.portal.content.available">
@@ -144,9 +143,8 @@
<!-- Build source distributions -->
<!-- ================================================================== -->
- <!-- Build the src dist -->
<target name="build-src-dist" description="Build the source distribution">
- <property name="build.src.dist" value="${core.dir}/output/src-dist"/>
+ <property name="build.src.dist" value="${basedir}/output/src-dist"/>
<delete dir="${build.src.dist}/jbossws-${version.id}-src"/>
<mkdir dir="${build.src.dist}/jbossws-${version.id}-src"/>
<copy todir="${build.src.dist}/jbossws-${version.id}-src">
@@ -158,7 +156,7 @@
<exclude name="ant.properties"/>
</fileset>
</copy>
- <zip destfile="${core.dir}/output/jbossws-${version.id}-src.zip" basedir="${build.src.dist}"
+ <zip destfile="${basedir}/output/jbossws-${version.id}-src.zip" basedir="${build.src.dist}"
includes="jbossws-${version.id}-src/**"/>
</target>
Modified: stack/native/trunk/version.properties
===================================================================
--- stack/native/trunk/version.properties 2008-02-28 10:00:54 UTC (rev 5835)
+++ stack/native/trunk/version.properties 2008-02-28 10:03:44 UTC (rev 5836)
@@ -6,7 +6,7 @@
specification.version=jbossws-3.0
version.id=3.0.1-native-2.0.4.GA
-repository.id=snapshot
+repository.id=3.0.1-native-2.0.4.GA
implementation.title=JBoss Web Services - Native
implementation.url=http://www.jboss.org/products/jbossws
16 years, 10 months
JBossWS SVN: r5835 - stack/native/trunk/src/main/java/org/jboss/ws/metadata/builder/jaxws.
by jbossws-commits@lists.jboss.org
Author: mageshbk(a)jboss.com
Date: 2008-02-28 05:00:54 -0500 (Thu, 28 Feb 2008)
New Revision: 5835
Modified:
stack/native/trunk/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSMetaDataBuilder.java
Log:
[JBWS-1938] Assign message name instead of IN and OUT for Inbound/Outbound Addressing Property
Modified: stack/native/trunk/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSMetaDataBuilder.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSMetaDataBuilder.java 2008-02-28 08:47:52 UTC (rev 5834)
+++ stack/native/trunk/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSMetaDataBuilder.java 2008-02-28 10:00:54 UTC (rev 5835)
@@ -548,10 +548,10 @@
String tns = epMetaData.getPortName().getNamespaceURI();
String portTypeName = epMetaData.getPortName().getLocalPart();
String opName = opMetaData.getQName().getLocalPart();
- addrExt.setInboundAction(tns + "/" + portTypeName + "/" + opName + "/IN");
+ addrExt.setInboundAction(tns + "/" + portTypeName + "/" + opName + "Request");
if (!opMetaData.isOneWay())
- addrExt.setOutboundAction(tns + "/" + portTypeName + "/" + opName + "/OUT");
+ addrExt.setOutboundAction(tns + "/" + portTypeName + "/" + opName + "Response");
}
opMetaData.addExtension(addrExt);
16 years, 10 months