JBossWS SVN: r7001 - stack/native/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-05-10 04:19:05 -0400 (Sat, 10 May 2008)
New Revision: 7001
Modified:
stack/native/trunk/modules/testsuite/pom.xml
Log:
[JBWS-2176] Revert forkMode=pertest
Modified: stack/native/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/pom.xml 2008-05-10 08:03:52 UTC (rev 7000)
+++ stack/native/trunk/modules/testsuite/pom.xml 2008-05-10 08:19:05 UTC (rev 7001)
@@ -134,7 +134,8 @@
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
- <forkMode>pertest</forkMode>
+ <!-- http://jira.jboss.org/jira/browse/JBWS-2176
+ <forkMode>pertest</forkMode-->
<systemProperties>
<property>
<name>java.naming.provider.url</name>
@@ -162,11 +163,11 @@
</property>
<property>
<name>org.jboss.ws.wsse.keyStore</name>
- <value>${project.build.directory}/test-resources/jaxws/samples/wssecurity/wsse.keystore</value>
+ <value>${test.resources.directory}/jaxws/samples/wssecurity/wsse.keystore</value>
</property>
<property>
<name>org.jboss.ws.wsse.trustStore</name>
- <value>${project.build.directory}/test-resources/jaxws/samples/wssecurity/wsse.truststore</value>
+ <value>${test.resources.directory}/jaxws/samples/wssecurity/wsse.truststore</value>
</property>
<property>
<name>org.jboss.ws.wsse.keyStorePassword</name>
@@ -263,7 +264,6 @@
<properties>
<jboss.version>4.2.2.GA</jboss.version>
<jbossws.integration.target>jboss422</jbossws.integration.target>
- <java.endorsed.dirs>${jboss422.home}/lib/endorsed</java.endorsed.dirs>
</properties>
<dependencies>
<dependency>
16 years, 8 months
JBossWS SVN: r7000 - stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-05-10 04:03:52 -0400 (Sat, 10 May 2008)
New Revision: 7000
Modified:
stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/ProviderImpl.java
Log:
Fix svn:id
Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/ProviderImpl.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/ProviderImpl.java 2008-05-10 08:00:27 UTC (rev 6999)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/ProviderImpl.java 2008-05-10 08:03:52 UTC (rev 7000)
@@ -21,7 +21,7 @@
*/
package org.jboss.ws.core.jaxws.spi;
-// $Id$
+// $Id:$
import java.net.MalformedURLException;
import java.net.URL;
16 years, 8 months
JBossWS SVN: r6999 - stack/native/trunk/modules/jaxws/src/main/java/javax/xml/ws/spi.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-05-10 04:00:27 -0400 (Sat, 10 May 2008)
New Revision: 6999
Modified:
stack/native/trunk/modules/jaxws/src/main/java/javax/xml/ws/spi/Provider.java
Log:
Rethrow RTE
Modified: stack/native/trunk/modules/jaxws/src/main/java/javax/xml/ws/spi/Provider.java
===================================================================
--- stack/native/trunk/modules/jaxws/src/main/java/javax/xml/ws/spi/Provider.java 2008-05-09 21:33:49 UTC (rev 6998)
+++ stack/native/trunk/modules/jaxws/src/main/java/javax/xml/ws/spi/Provider.java 2008-05-10 08:00:27 UTC (rev 6999)
@@ -81,7 +81,7 @@
{
return (Provider)ProviderLoader.loadProvider(DEFAULT_JAXWSPROVIDER);
}
- catch (WebServiceException ex)
+ catch (RuntimeException ex)
{
throw ex;
}
16 years, 8 months
JBossWS SVN: r6998 - in stack/native/branches/jbossws-native-2.0.1.SP2_CP/src: main/java/org/jboss/ws/metadata and 8 other directories.
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2008-05-09 17:33:49 -0400 (Fri, 09 May 2008)
New Revision: 6998
Added:
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/Accessor.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactory.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactoryCreator.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessor.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactory.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactoryCreator.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessor.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactory.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactoryCreator.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessor.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactory.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactoryCreator.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/InitalizableMetaData.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/JBWS1857TestCase.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AdressArt.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AdressTyp.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Adresse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AmtArt.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AnredeCode.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AusstellendeBehoerde.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteGlaeubiger.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteGlaeubigerResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandant.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantUser.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantUserResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteNatPerson.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteNatPersonResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteUser.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteUserResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ErrorCode.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ErrorScope.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchGlaeubiger.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchGlaeubigerResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandant.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantUser.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantUserResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchNatPerson.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchNatPersonResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchUser.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchUserResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Glaeubiger.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerArrayResult.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerResult.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerVerbindung.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerVertreter.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/HaftungArt.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/HerkunftReferenz.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertGlaeubiger.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertGlaeubigerResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandant.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantUser.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantUserResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertNatPerson.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertNatPersonResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertUser.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertUserResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/KantonType.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/LanguageType.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Mandant.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantArrayResult.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantResult.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUser.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUserArrayResult.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUserResult.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NatPersonResult.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Nationalitaet.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NationalitaetStatus.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NatuerlichePerson.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ObjectFactory.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Person.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonAdresse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonInterface.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonenArt.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ServiceStatus.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Stammdaten.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/StammdatenService.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/StatusType.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateGlaeubiger.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateGlaeubigerResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandant.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantUser.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantUserResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateNatPerson.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateNatPersonResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateUser.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateUserResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/User.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UserArrayResult.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UserResult.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/VerbindungsTyp.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Verlustschein.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/VerlustscheinArt.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/package-info.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/resources/jaxws/jbws1857/
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/resources/jaxws/jbws1857/StammdatenService.wsdl
Removed:
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/Accessor.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactory.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactoryCreator.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessor.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactory.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactoryCreator.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessor.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactory.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactoryCreator.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessor.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactory.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactoryCreator.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/acessor/
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/Accessor.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/AccessorFactory.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/AccessorFactoryCreator.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/JBWS1857TestCase.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AdressArt.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AdressTyp.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Adresse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AmtArt.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AnredeCode.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AusstellendeBehoerde.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteGlaeubiger.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteGlaeubigerResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandant.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantUser.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantUserResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteNatPerson.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteNatPersonResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteUser.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteUserResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ErrorCode.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ErrorScope.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchGlaeubiger.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchGlaeubigerResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandant.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantUser.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantUserResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchNatPerson.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchNatPersonResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchUser.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchUserResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Glaeubiger.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerArrayResult.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerResult.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerVerbindung.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerVertreter.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/HaftungArt.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/HerkunftReferenz.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertGlaeubiger.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertGlaeubigerResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandant.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantUser.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantUserResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertNatPerson.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertNatPersonResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertUser.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertUserResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/KantonType.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/LanguageType.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Mandant.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantArrayResult.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantResult.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUser.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUserArrayResult.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUserResult.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NatPersonResult.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Nationalitaet.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NationalitaetStatus.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NatuerlichePerson.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ObjectFactory.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Person.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonAdresse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonInterface.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonenArt.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ServiceStatus.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Stammdaten.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/StammdatenService.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/StatusType.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateGlaeubiger.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateGlaeubigerResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandant.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantUser.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantUserResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateNatPerson.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateNatPersonResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateUser.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateUserResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/User.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UserArrayResult.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UserResult.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/VerbindungsTyp.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Verlustschein.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/VerlustscheinArt.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/package-info.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/resources/jaxws/jbws1857/StammdatenService.wsdl
Modified:
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/jaxws/CustomizableJAXBContextFactory.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/jaxws/JAXBContextFactory.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSMetaDataBuilder.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/EndpointMetaData.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/FaultMetaData.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/HandlerMetaData.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/OperationMetaData.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/ParameterMetaData.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/ServiceMetaData.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/UnifiedMetaData.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/WrappedParameter.java
Log:
[JBPAPP-831] JAXBContext created for every wrapper type.
Modified: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/jaxws/CustomizableJAXBContextFactory.java
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/jaxws/CustomizableJAXBContextFactory.java 2008-05-09 21:26:43 UTC (rev 6997)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/jaxws/CustomizableJAXBContextFactory.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -21,18 +21,22 @@
*/
package org.jboss.ws.core.jaxws;
-import com.sun.xml.bind.api.JAXBRIContext;
-import com.sun.xml.bind.api.TypeReference;
-import com.sun.xml.bind.v2.model.annotation.RuntimeAnnotationReader;
+// $Id$
+
+import java.util.Collection;
+
+import javax.xml.bind.JAXBContext;
+import javax.xml.bind.JAXBException;
+
import org.jboss.logging.Logger;
import org.jboss.ws.WSException;
import org.jboss.wsf.spi.binding.BindingCustomization;
import org.jboss.wsf.spi.deployment.Endpoint;
import org.jboss.wsf.spi.invocation.EndpointAssociation;
-import javax.xml.bind.JAXBContext;
-import javax.xml.bind.JAXBException;
-import java.util.Collection;
+import com.sun.xml.bind.api.JAXBRIContext;
+import com.sun.xml.bind.api.TypeReference;
+import com.sun.xml.bind.v2.model.annotation.RuntimeAnnotationReader;
/**
* The default factory checks if a {@link JAXBBindingCustomization} exists
@@ -57,64 +61,65 @@
public JAXBContext createContext(Class clazz) throws WSException
{
- return createContext(new Class[] {clazz});
+ return createContext(new Class[] { clazz });
}
public JAXBContext createContext(Class[] clazzes) throws WSException
{
try
{
- BindingCustomization customization = getCustomization();
+ BindingCustomization bcust = getCustomization();
- JAXBContext jaxbCtx;
- if(null == customization)
+ JAXBContext jaxbCtx;
+ if (null == bcust)
jaxbCtx = JAXBContext.newInstance(clazzes);
else
- jaxbCtx = createContext(clazzes, customization);
+ jaxbCtx = createContext(clazzes, bcust);
+ incrementContextCount();
return jaxbCtx;
}
- catch (JAXBException e) {
+ catch (JAXBException e)
+ {
throw new WSException("Failed to create JAXBContext", e);
}
}
- public JAXBContext createContext(Class[] clazzes, BindingCustomization bindingCustomization) throws WSException
+ public JAXBContext createContext(Class[] clazzes, BindingCustomization bcust) throws WSException
{
try
{
- return JAXBContext.newInstance(clazzes, bindingCustomization);
+ JAXBContext jaxbCtx = JAXBContext.newInstance(clazzes, bcust);
+ incrementContextCount();
+ return jaxbCtx;
}
- catch (JAXBException e) {
+ catch (JAXBException e)
+ {
throw new WSException("Failed to create JAXBContext", e);
}
}
- public JAXBRIContext createContext(
- Class[] classes, Collection<TypeReference> typeReferences,
- String defaultNamespaceRemap, boolean c14nSupport, BindingCustomization bindingCustomization)
+ public JAXBRIContext createContext(Class[] classes, Collection<TypeReference> refs, String defaultNS, boolean c14n, BindingCustomization bcust)
{
try
{
- RuntimeAnnotationReader runtimeAnnotations = bindingCustomization!=null ?
- (RuntimeAnnotationReader)bindingCustomization.get(JAXBRIContext.ANNOTATION_READER) : null;
+ RuntimeAnnotationReader anReader = null;
+ if (bcust != null)
+ anReader = (RuntimeAnnotationReader)bcust.get(JAXBRIContext.ANNOTATION_READER);
- return JAXBRIContext.newInstance(
- classes, typeReferences,
- null,
- defaultNamespaceRemap, c14nSupport ,
- runtimeAnnotations
- );
-
+ JAXBRIContext jaxbCtx = JAXBRIContext.newInstance(classes, refs, null, defaultNS, c14n, anReader);
+ incrementContextCount();
+ return jaxbCtx;
}
- catch (JAXBException e) {
+ catch (JAXBException e)
+ {
throw new WSException("Failed to create JAXBContext", e);
}
}
private BindingCustomization getCustomization()
{
- Endpoint threadLocal = EndpointAssociation.getEndpoint();
- return threadLocal!=null ? threadLocal.getAttachment(BindingCustomization.class):null;
+ Endpoint ep = EndpointAssociation.getEndpoint();
+ return ep != null ? ep.getAttachment(BindingCustomization.class) : null;
}
}
Modified: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/jaxws/JAXBContextFactory.java
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/jaxws/JAXBContextFactory.java 2008-05-09 21:26:43 UTC (rev 6997)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/jaxws/JAXBContextFactory.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -21,26 +21,30 @@
*/
package org.jboss.ws.core.jaxws;
+// $Id$
+
+import java.util.Collection;
+
+import javax.xml.bind.JAXBContext;
+
import org.jboss.ws.WSException;
+import org.jboss.wsf.spi.binding.BindingCustomization;
import org.jboss.wsf.spi.util.ServiceLoader;
-import org.jboss.wsf.spi.binding.BindingCustomization;
-import javax.xml.bind.JAXBContext;
-
+import com.sun.xml.bind.api.JAXBRIContext;
import com.sun.xml.bind.api.TypeReference;
-import com.sun.xml.bind.api.JAXBRIContext;
-import java.util.Collection;
-
/**
* Creates JAXBContext's.<p>
*
* @author Heiko.Braun(a)jboss.com
* Created: Jun 26, 2007
*/
-public abstract class JAXBContextFactory {
-
+public abstract class JAXBContextFactory
+{
public final static String DEFAULT_JAXB_CONTEXT_FACTORY = "org.jboss.ws.core.jaxws.CustomizableJAXBContextFactory";
+
+ private static ThreadLocal threadContextCount = new ThreadLocal();
public abstract JAXBContext createContext(Class[] clazzes, BindingCustomization bindingCustomization) throws WSException;
@@ -48,10 +52,29 @@
public abstract JAXBContext createContext(Class clazz) throws WSException;
- public abstract JAXBRIContext createContext(
- Class[] classes, Collection<TypeReference> typeReferences,
- String defaultNamespaceRemap, boolean c14nSupport, BindingCustomization bindingCustomization);
+ public abstract JAXBRIContext createContext(Class[] classes, Collection<TypeReference> typeReferences, String defaultNamespaceRemap, boolean c14nSupport,
+ BindingCustomization bindingCustomization);
+ protected void incrementContextCount()
+ {
+ Integer count = getContextCount();
+ threadContextCount.set(new Integer(count + 1));
+ }
+
+ public static Integer getContextCount()
+ {
+ Integer count = (Integer)threadContextCount.get();
+ if (count == null)
+ count = new Integer(0);
+
+ return count;
+ }
+
+ public static void resetContextCount()
+ {
+ threadContextCount.set(new Integer(0));
+ }
+
/**
* Retrieve JAXBContextFactory instance through the {@link org.jboss.wsf.spi.util.ServiceLoader}.
* Defaults to {@link CustomizableJAXBContextFactory}
@@ -59,9 +82,6 @@
*/
public static JAXBContextFactory newInstance()
{
- return (JAXBContextFactory)ServiceLoader.loadService(
- JAXBContextFactory.class.getName(),
- DEFAULT_JAXB_CONTEXT_FACTORY
- );
+ return (JAXBContextFactory)ServiceLoader.loadService(JAXBContextFactory.class.getName(), DEFAULT_JAXB_CONTEXT_FACTORY);
}
}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor (from rev 5845, stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor)
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/Accessor.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/Accessor.java 2008-02-28 13:53:13 UTC (rev 5845)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/Accessor.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,34 +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.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/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/Accessor.java (from rev 5845, stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/Accessor.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/Accessor.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/Accessor.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactory.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactory.java 2008-02-28 13:53:13 UTC (rev 5845)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactory.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,34 +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.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/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactory.java (from rev 5845, stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactory.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactory.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactory.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactoryCreator.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactoryCreator.java 2008-02-28 13:53:13 UTC (rev 5845)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactoryCreator.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,38 +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.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
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactoryCreator.java (from rev 5845, stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactoryCreator.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactoryCreator.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/AccessorFactoryCreator.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessor.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessor.java 2008-02-28 13:53:13 UTC (rev 5845)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessor.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,73 +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.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
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessor.java (from rev 5845, stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessor.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessor.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessor.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactory.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactory.java 2008-02-28 13:53:13 UTC (rev 5845)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactory.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,69 +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.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
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactory.java (from rev 5845, stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactory.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactory.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactory.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactoryCreator.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactoryCreator.java 2008-02-28 13:53:13 UTC (rev 5845)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactoryCreator.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,53 +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.accessor;
-
-//$Id$
-
-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
-{
- private JAXBRIContext ctx;
-
- public void setJAXBContext(JAXBRIContext ctx)
- {
- this.ctx = ctx;
- }
-
- public AccessorFactory create(ParameterMetaData parameter)
- {
- if (ctx == null)
- throw new IllegalStateException("JAXBContext not available");
- return new JAXBAccessorFactory(parameter.getJavaType(), ctx);
- }
-
- public AccessorFactory create(FaultMetaData fault)
- {
- if (ctx == null)
- throw new IllegalStateException("JAXBContext not available");
- return new JAXBAccessorFactory(fault.getFaultBean(), ctx);
- }
-}
\ No newline at end of file
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactoryCreator.java (from rev 5845, stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactoryCreator.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactoryCreator.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/JAXBAccessorFactoryCreator.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -0,0 +1,53 @@
+/*
+ * 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;
+
+import com.sun.xml.bind.api.JAXBRIContext;
+
+public class JAXBAccessorFactoryCreator implements AccessorFactoryCreator
+{
+ private JAXBRIContext ctx;
+
+ public void setJAXBContext(JAXBRIContext ctx)
+ {
+ this.ctx = ctx;
+ }
+
+ public AccessorFactory create(ParameterMetaData parameter)
+ {
+ if (ctx == null)
+ throw new IllegalStateException("JAXBContext not available");
+ return new JAXBAccessorFactory(parameter.getJavaType(), ctx);
+ }
+
+ public AccessorFactory create(FaultMetaData fault)
+ {
+ if (ctx == null)
+ throw new IllegalStateException("JAXBContext not available");
+ return new JAXBAccessorFactory(fault.getFaultBean(), ctx);
+ }
+}
\ No newline at end of file
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessor.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessor.java 2008-02-28 13:53:13 UTC (rev 5845)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessor.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,75 +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.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
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessor.java (from rev 5845, stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessor.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessor.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessor.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactory.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactory.java 2008-02-28 13:53:13 UTC (rev 5845)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactory.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,71 +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.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
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactory.java (from rev 5845, stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactory.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactory.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactory.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactoryCreator.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactoryCreator.java 2008-02-28 13:53:13 UTC (rev 5845)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactoryCreator.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,40 +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.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
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactoryCreator.java (from rev 5845, stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactoryCreator.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactoryCreator.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveFieldAccessorFactoryCreator.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessor.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessor.java 2008-02-28 13:53:13 UTC (rev 5845)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessor.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,75 +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.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
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessor.java (from rev 5845, stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessor.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessor.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessor.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactory.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactory.java 2008-02-28 13:53:13 UTC (rev 5845)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactory.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,54 +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.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
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactory.java (from rev 5845, stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactory.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactory.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactory.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactoryCreator.java
===================================================================
--- stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactoryCreator.java 2008-02-28 13:53:13 UTC (rev 5845)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactoryCreator.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,38 +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.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
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactoryCreator.java (from rev 5845, stack/native/trunk/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactoryCreator.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactoryCreator.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/accessor/ReflectiveMethodAccessorFactoryCreator.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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
Modified: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSMetaDataBuilder.java
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSMetaDataBuilder.java 2008-05-09 21:26:43 UTC (rev 6997)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSMetaDataBuilder.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -39,7 +39,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;
@@ -368,7 +369,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;
@@ -400,7 +401,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/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/Accessor.java
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/Accessor.java 2008-05-09 21:26:43 UTC (rev 6997)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/Accessor.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/AccessorFactory.java
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/AccessorFactory.java 2008-05-09 21:26:43 UTC (rev 6997)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/AccessorFactory.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/AccessorFactoryCreator.java
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/AccessorFactoryCreator.java 2008-05-09 21:26:43 UTC (rev 6997)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/AccessorFactoryCreator.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/EndpointMetaData.java
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/EndpointMetaData.java 2008-05-09 21:26:43 UTC (rev 6997)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/EndpointMetaData.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -23,8 +23,8 @@
// $Id$
+import java.lang.ref.WeakReference;
import java.lang.reflect.Method;
-import java.lang.ref.WeakReference;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
@@ -34,9 +34,9 @@
import java.util.List;
import java.util.Map;
import java.util.Observable;
+import java.util.Observer;
import java.util.Properties;
import java.util.Set;
-import java.util.Observer;
import javax.jws.soap.SOAPBinding.ParameterStyle;
import javax.xml.namespace.QName;
@@ -54,11 +54,15 @@
import org.jboss.ws.core.jaxrpc.binding.SOAPArrayDeserializerFactory;
import org.jboss.ws.core.jaxrpc.binding.SOAPArraySerializerFactory;
import org.jboss.ws.core.jaxws.JAXBContextCache;
+import org.jboss.ws.core.jaxws.JAXBContextFactory;
import org.jboss.ws.core.jaxws.JAXBDeserializerFactory;
import org.jboss.ws.core.jaxws.JAXBSerializerFactory;
import org.jboss.ws.core.jaxws.client.DispatchBinding;
import org.jboss.ws.core.soap.Style;
import org.jboss.ws.core.soap.Use;
+import org.jboss.ws.metadata.accessor.AccessorFactory;
+import org.jboss.ws.metadata.accessor.AccessorFactoryCreator;
+import org.jboss.ws.metadata.accessor.JAXBAccessorFactoryCreator;
import org.jboss.ws.metadata.config.CommonConfig;
import org.jboss.ws.metadata.config.Configurable;
import org.jboss.ws.metadata.config.ConfigurationProvider;
@@ -70,13 +74,15 @@
import org.jboss.wsf.spi.metadata.j2ee.serviceref.UnifiedPortComponentRefMetaData;
import org.jboss.wsf.spi.metadata.j2ee.serviceref.UnifiedHandlerMetaData.HandlerType;
+import com.sun.xml.bind.api.JAXBRIContext;
+
/**
* A Service component describes a set of endpoints.
*
* @author Thomas.Diesler(a)jboss.org
* @since 12-May-2005
*/
-public abstract class EndpointMetaData extends ExtensibleMetaData implements ConfigurationProvider
+public abstract class EndpointMetaData extends ExtensibleMetaData implements ConfigurationProvider, InitalizableMetaData
{
// provide logging
private static Logger log = Logger.getLogger(EndpointMetaData.class);
@@ -518,6 +524,7 @@
eagerInitializeOperations();
eagerInitializeTypes();
+ eagerInitializeAccessors();
}
private void eagerInitializeOperations()
@@ -604,6 +611,69 @@
}
}
+ private void eagerInitializeAccessors()
+ {
+ // Collect the list of all used types
+ boolean useJAXBAccessorFactory = false;
+ List<Class> types = new ArrayList<Class>();
+ for (OperationMetaData opMetaData : operations)
+ {
+ for (ParameterMetaData paramMetaData : opMetaData.getParameters())
+ {
+ AccessorFactoryCreator factoryCreator = paramMetaData.getAccessorFactoryCreator();
+ if (factoryCreator instanceof JAXBAccessorFactoryCreator)
+ useJAXBAccessorFactory = true;
+
+ types.add(paramMetaData.getJavaType());
+ }
+
+ ParameterMetaData retParam = opMetaData.getReturnParameter();
+ if (retParam != null)
+ {
+ AccessorFactoryCreator factoryCreator = retParam.getAccessorFactoryCreator();
+ if (factoryCreator instanceof JAXBAccessorFactoryCreator)
+ useJAXBAccessorFactory = true;
+
+ types.add(retParam.getJavaType());
+ }
+ }
+
+ // Create a JAXBContext for those types
+ JAXBRIContext jaxbCtx = null;
+ if (useJAXBAccessorFactory)
+ {
+ Class[] typeArr = new Class[types.size()];
+ jaxbCtx = (JAXBRIContext)JAXBContextFactory.newInstance().createContext(types.toArray(typeArr));
+ }
+
+ // Create the accessors using a shared JAXBContext
+ for (OperationMetaData opMetaData : operations)
+ {
+ for (ParameterMetaData paramMetaData : opMetaData.getParameters())
+ {
+ createAccessor(paramMetaData, jaxbCtx);
+ }
+
+ ParameterMetaData retParam = opMetaData.getReturnParameter();
+ if (retParam != null)
+ createAccessor(retParam, jaxbCtx);
+ }
+ }
+
+ private void createAccessor(ParameterMetaData paramMetaData, JAXBRIContext jaxbCtx)
+ {
+ AccessorFactoryCreator factoryCreator = paramMetaData.getAccessorFactoryCreator();
+ if (factoryCreator instanceof JAXBAccessorFactoryCreator)
+ ((JAXBAccessorFactoryCreator)factoryCreator).setJAXBContext(jaxbCtx);
+
+ if (paramMetaData.getWrappedParameters() != null)
+ {
+ AccessorFactory factory = factoryCreator.create(paramMetaData);
+ for (WrappedParameter wParam : paramMetaData.getWrappedParameters())
+ wParam.setAccessor(factory.create(wParam));
+ }
+ }
+
// ---------------------------------------------------------------
// Configuration provider impl
Modified: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/FaultMetaData.java
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/FaultMetaData.java 2008-05-09 21:26:43 UTC (rev 6997)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/FaultMetaData.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
@@ -51,7 +52,7 @@
* @author jason.greene(a)jboss.com
* @since 12-May-2005
*/
-public class FaultMetaData
+public class FaultMetaData implements InitalizableMetaData
{
// provide logging
private final Logger log = Logger.getLogger(FaultMetaData.class);
@@ -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/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/HandlerMetaData.java
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/HandlerMetaData.java 2008-05-09 21:26:43 UTC (rev 6997)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/HandlerMetaData.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -42,7 +42,7 @@
* @author Thomas.Diesler(a)jboss.org
* @since 05-May-2006
*/
-public abstract class HandlerMetaData implements Serializable
+public abstract class HandlerMetaData implements InitalizableMetaData, Serializable
{
// provide logging
private final Logger log = Logger.getLogger(HandlerMetaData.class);
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/InitalizableMetaData.java (from rev 5845, stack/native/trunk/src/main/java/org/jboss/ws/metadata/umdm/InitalizableMetaData.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/InitalizableMetaData.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/InitalizableMetaData.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -0,0 +1,36 @@
+/*
+ * 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.umdm;
+
+// $Id$
+
+
+/**
+ * Metadata that is Inizializable
+ *
+ * @author Thomas.Diesler(a)jboss.org
+ * @since 28-Feb-2008
+ */
+public interface InitalizableMetaData
+{
+ void eagerInitialize();
+}
Modified: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/OperationMetaData.java
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/OperationMetaData.java 2008-05-09 21:26:43 UTC (rev 6997)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/OperationMetaData.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -34,6 +34,7 @@
import javax.xml.rpc.ParameterMode;
import org.jboss.logging.Logger;
+import org.jboss.util.NotImplementedException;
import org.jboss.ws.WSException;
import org.jboss.ws.core.soap.Style;
import org.jboss.ws.core.soap.Use;
@@ -49,7 +50,7 @@
* @author <a href="mailto:jason.greene@jboss.com">Jason T. Greene</a>
* @since 12-May-2004
*/
-public class OperationMetaData extends ExtensibleMetaData
+public class OperationMetaData extends ExtensibleMetaData implements InitalizableMetaData
{
// provide logging
private final Logger log = Logger.getLogger(OperationMetaData.class);
@@ -446,6 +447,12 @@
fault.validate();
}
+ public void eagerInitialize()
+ {
+ // Call eagerInitialize(List<Method> unsynchronizedMethods) instead
+ throw new NotImplementedException();
+ }
+
/**
* @see UnifiedMetaData#eagerInitialize()
*/
Modified: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/ParameterMetaData.java
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/ParameterMetaData.java 2008-05-09 21:26:43 UTC (rev 6997)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/ParameterMetaData.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
@@ -53,7 +55,7 @@
* @author <a href="mailto:jason.greene@jboss.com">Jason T. Greene</a>
* @since 12-May-2005
*/
-public class ParameterMetaData
+public class ParameterMetaData implements InitalizableMetaData
{
// provide logging
private final Logger log = Logger.getLogger(ParameterMetaData.class);
@@ -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
@@ -209,7 +211,8 @@
// Remove potential prefix
if (xmlType.getNamespaceURI().length() > 0)
this.xmlType = new QName(xmlType.getNamespaceURI(), xmlType.getLocalPart());
- else this.xmlType = xmlType;
+ else
+ this.xmlType = xmlType;
// Special case to identify attachments
if (Constants.NS_ATTACHMENT_MIME_TYPE.equals(xmlType.getNamespaceURI()))
@@ -292,7 +295,8 @@
setMode(ParameterMode.INOUT);
else if ("OUT".equals(mode))
setMode(ParameterMode.OUT);
- else throw new IllegalArgumentException("Invalid mode: " + mode);
+ else
+ throw new IllegalArgumentException("Invalid mode: " + mode);
}
public void setMode(ParameterMode mode)
@@ -379,7 +383,6 @@
this.soapArrayCompType = compXmlType;
}
-
@Deprecated
// FIXME This hack should be removed
public boolean isMessageType()
@@ -466,18 +469,13 @@
Type epType = getOperationMetaData().getEndpointMetaData().getType();
if (getOperationMetaData().isDocumentWrapped() && !isInHeader() && !isSwA() && !isMessageType())
{
- if (loadWrapperBean() == null)
- {
- if (epType == EndpointMetaData.Type.JAXRPC)
- throw new WSException("Autogeneration of wrapper beans not supported with JAXRPC");
+ if (loadWrapperBean() == null)
+ {
+ if (epType == EndpointMetaData.Type.JAXRPC)
+ throw new WSException("Autogeneration of wrapper beans not supported with JAXRPC");
- new DynamicWrapperGenerator( getClassLoader() ).generate(this);
- }
-
- // Initialize accessors
- AccessorFactory factory = accessorFactoryCreator.create(this);
- for (WrappedParameter wrapped : wrappedParameters)
- wrapped.setAccessor(factory.create(wrapped));
+ new DynamicWrapperGenerator(getClassLoader()).generate(this);
+ }
}
javaType = getJavaType();
@@ -502,8 +500,9 @@
AttachmentScanResult scanResult = scanner.scanBean(javaType);
if (scanResult != null)
{
- if(log.isDebugEnabled()) log.debug("Identified attachment reference: " + xmlName + ", type="+scanResult.getType());
- if(scanResult.getType() == AttachmentScanResult.Type.XOP)
+ if (log.isDebugEnabled())
+ log.debug("Identified attachment reference: " + xmlName + ", type=" + scanResult.getType());
+ if (scanResult.getType() == AttachmentScanResult.Type.XOP)
setXOP(true);
else
setSwaRef(true);
@@ -544,7 +543,8 @@
}
catch (Exception ex)
{
- if(log.isDebugEnabled()) log.debug("Invalid wrapper type:" + typeName, ex);
+ if (log.isDebugEnabled())
+ log.debug("Invalid wrapper type:" + typeName, ex);
return false;
}
}
@@ -552,6 +552,11 @@
return true;
}
+ public AccessorFactoryCreator getAccessorFactoryCreator()
+ {
+ return accessorFactoryCreator;
+ }
+
public void setAccessorFactoryCreator(AccessorFactoryCreator accessorFactoryCreator)
{
this.accessorFactoryCreator = accessorFactoryCreator;
Modified: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/ServiceMetaData.java
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/ServiceMetaData.java 2008-05-09 21:26:43 UTC (rev 6997)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/ServiceMetaData.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -60,7 +60,7 @@
* @author Thomas.Diesler(a)jboss.org
* @since 12-May-2005
*/
-public class ServiceMetaData
+public class ServiceMetaData implements InitalizableMetaData
{
// provide logging
private static final Logger log = Logger.getLogger(ServiceMetaData.class);
Modified: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/UnifiedMetaData.java
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/UnifiedMetaData.java 2008-05-09 21:26:43 UTC (rev 6997)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/UnifiedMetaData.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -48,7 +48,7 @@
* @author <a href="mailto:jason.greene@jboss.com">Jason T. Greene</a>
* @since 12-May-2005
*/
-public class UnifiedMetaData
+public class UnifiedMetaData implements InitalizableMetaData
{
// provide logging
private static Logger log = Logger.getLogger(UnifiedMetaData.class);
Modified: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/WrappedParameter.java
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/WrappedParameter.java 2008-05-09 21:26:43 UTC (rev 6997)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/umdm/WrappedParameter.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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
{
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857 (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857)
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/JBWS1857TestCase.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,52 +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.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);
- }
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/JBWS1857TestCase.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/JBWS1857TestCase.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/JBWS1857TestCase.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/JBWS1857TestCase.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -0,0 +1,55 @@
+/*
+ * 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.ws.core.jaxws.JAXBContextFactory;
+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);
+ Integer ctxCount = JAXBContextFactory.getContextCount();
+ assertTrue("Too many JAXB context: " + ctxCount, ctxCount < 3);
+ }
+}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types)
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AdressArt.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,40 +0,0 @@
-
-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);
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AdressArt.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AdressArt.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AdressArt.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AdressArt.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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);
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AdressTyp.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,46 +0,0 @@
-
-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);
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AdressTyp.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AdressTyp.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AdressTyp.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AdressTyp.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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);
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Adresse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,731 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Adresse.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Adresse.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Adresse.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Adresse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AmtArt.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,40 +0,0 @@
-
-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);
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AmtArt.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AmtArt.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AmtArt.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AmtArt.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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);
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AnredeCode.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,42 +0,0 @@
-
-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);
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AnredeCode.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AnredeCode.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AnredeCode.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AnredeCode.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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);
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AusstellendeBehoerde.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,280 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AusstellendeBehoerde.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AusstellendeBehoerde.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AusstellendeBehoerde.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/AusstellendeBehoerde.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteGlaeubiger.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,60 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteGlaeubiger.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteGlaeubiger.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteGlaeubiger.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteGlaeubiger.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteGlaeubigerResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,62 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteGlaeubigerResponse.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteGlaeubigerResponse.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteGlaeubigerResponse.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteGlaeubigerResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandant.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,60 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandant.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandant.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandant.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandant.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,62 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantResponse.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantResponse.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantResponse.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantUser.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,60 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantUser.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantUser.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantUser.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantUser.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantUserResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,62 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantUserResponse.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantUserResponse.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantUserResponse.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteMandantUserResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteNatPerson.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,60 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteNatPerson.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteNatPerson.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteNatPerson.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteNatPerson.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteNatPersonResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,62 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteNatPersonResponse.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteNatPersonResponse.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteNatPersonResponse.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteNatPersonResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteUser.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,60 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteUser.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteUser.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteUser.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteUser.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteUserResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,62 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteUserResponse.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteUserResponse.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteUserResponse.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/DeleteUserResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ErrorCode.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,42 +0,0 @@
-
-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);
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ErrorCode.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ErrorCode.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ErrorCode.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ErrorCode.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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);
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ErrorScope.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,40 +0,0 @@
-
-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);
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ErrorScope.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ErrorScope.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ErrorScope.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ErrorScope.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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);
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchGlaeubiger.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,60 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchGlaeubiger.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchGlaeubiger.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchGlaeubiger.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchGlaeubiger.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchGlaeubigerResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,62 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchGlaeubigerResponse.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchGlaeubigerResponse.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchGlaeubigerResponse.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchGlaeubigerResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandant.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,60 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandant.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandant.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandant.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandant.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,62 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantResponse.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantResponse.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantResponse.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantUser.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,60 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantUser.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantUser.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantUser.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantUser.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantUserResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,62 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantUserResponse.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantUserResponse.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantUserResponse.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchMandantUserResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchNatPerson.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,60 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchNatPerson.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchNatPerson.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchNatPerson.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchNatPerson.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchNatPersonResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,62 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchNatPersonResponse.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchNatPersonResponse.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchNatPersonResponse.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchNatPersonResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchUser.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,60 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchUser.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchUser.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchUser.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchUser.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchUserResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,62 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchUserResponse.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchUserResponse.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchUserResponse.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/FetchUserResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Glaeubiger.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,481 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Glaeubiger.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Glaeubiger.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Glaeubiger.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Glaeubiger.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerArrayResult.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,96 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerArrayResult.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerArrayResult.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerArrayResult.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerArrayResult.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerResult.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,87 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerResult.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerResult.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerResult.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerResult.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerVerbindung.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,227 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerVerbindung.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerVerbindung.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerVerbindung.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerVerbindung.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerVertreter.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,499 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerVertreter.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerVertreter.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerVertreter.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/GlaeubigerVertreter.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/HaftungArt.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,40 +0,0 @@
-
-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);
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/HaftungArt.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/HaftungArt.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/HaftungArt.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/HaftungArt.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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);
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/HerkunftReferenz.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,303 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/HerkunftReferenz.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/HerkunftReferenz.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/HerkunftReferenz.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/HerkunftReferenz.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertGlaeubiger.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,60 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertGlaeubiger.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertGlaeubiger.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertGlaeubiger.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertGlaeubiger.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertGlaeubigerResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,62 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertGlaeubigerResponse.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertGlaeubigerResponse.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertGlaeubigerResponse.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertGlaeubigerResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandant.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,60 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandant.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandant.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandant.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandant.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,62 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantResponse.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantResponse.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantResponse.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantUser.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,60 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantUser.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantUser.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantUser.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantUser.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantUserResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,62 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantUserResponse.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantUserResponse.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantUserResponse.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertMandantUserResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertNatPerson.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,60 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertNatPerson.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertNatPerson.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertNatPerson.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertNatPerson.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertNatPersonResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,62 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertNatPersonResponse.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertNatPersonResponse.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertNatPersonResponse.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertNatPersonResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertUser.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,60 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertUser.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertUser.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertUser.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertUser.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertUserResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,62 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertUserResponse.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertUserResponse.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertUserResponse.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/InsertUserResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/KantonType.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,86 +0,0 @@
-
-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);
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/KantonType.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/KantonType.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/KantonType.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/KantonType.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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);
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/LanguageType.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,40 +0,0 @@
-
-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);
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/LanguageType.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/LanguageType.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/LanguageType.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/LanguageType.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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);
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Mandant.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,936 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Mandant.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Mandant.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Mandant.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Mandant.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantArrayResult.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,96 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantArrayResult.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantArrayResult.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantArrayResult.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantArrayResult.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantResult.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,123 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantResult.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantResult.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantResult.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantResult.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUser.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,447 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUser.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUser.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUser.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUser.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUserArrayResult.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,96 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUserArrayResult.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUserArrayResult.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUserArrayResult.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUserArrayResult.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUserResult.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,87 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUserResult.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUserResult.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUserResult.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/MandantUserResult.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NatPersonResult.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,123 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NatPersonResult.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NatPersonResult.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NatPersonResult.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NatPersonResult.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Nationalitaet.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,168 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Nationalitaet.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Nationalitaet.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Nationalitaet.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Nationalitaet.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NationalitaetStatus.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,40 +0,0 @@
-
-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);
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NationalitaetStatus.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NationalitaetStatus.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NationalitaetStatus.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NationalitaetStatus.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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);
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NatuerlichePerson.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,497 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NatuerlichePerson.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NatuerlichePerson.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NatuerlichePerson.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/NatuerlichePerson.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ObjectFactory.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,947 +0,0 @@
-
-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);
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ObjectFactory.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ObjectFactory.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ObjectFactory.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ObjectFactory.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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);
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Person.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,400 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Person.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Person.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Person.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Person.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonAdresse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,114 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonAdresse.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonAdresse.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonAdresse.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonAdresse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonInterface.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,280 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonInterface.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonInterface.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonInterface.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonInterface.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonenArt.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,38 +0,0 @@
-
-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);
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonenArt.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonenArt.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonenArt.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/PersonenArt.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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);
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ServiceStatus.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,169 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ServiceStatus.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ServiceStatus.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ServiceStatus.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/ServiceStatus.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Stammdaten.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,302 +0,0 @@
-
-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);
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Stammdaten.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Stammdaten.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Stammdaten.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Stammdaten.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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);
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/StammdatenService.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,53 +0,0 @@
-
-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);
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/StammdatenService.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/StammdatenService.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/StammdatenService.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/StammdatenService.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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);
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/StatusType.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,38 +0,0 @@
-
-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);
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/StatusType.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/StatusType.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/StatusType.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/StatusType.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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);
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateGlaeubiger.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,60 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateGlaeubiger.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateGlaeubiger.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateGlaeubiger.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateGlaeubiger.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateGlaeubigerResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,62 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateGlaeubigerResponse.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateGlaeubigerResponse.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateGlaeubigerResponse.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateGlaeubigerResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandant.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,60 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandant.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandant.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandant.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandant.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,62 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantResponse.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantResponse.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantResponse.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantUser.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,60 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantUser.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantUser.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantUser.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantUser.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantUserResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,62 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantUserResponse.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantUserResponse.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantUserResponse.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateMandantUserResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateNatPerson.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,60 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateNatPerson.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateNatPerson.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateNatPerson.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateNatPerson.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateNatPersonResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,62 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateNatPersonResponse.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateNatPersonResponse.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateNatPersonResponse.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateNatPersonResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateUser.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,60 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateUser.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateUser.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateUser.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateUser.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateUserResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,62 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateUserResponse.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateUserResponse.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateUserResponse.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UpdateUserResponse.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/User.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,445 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/User.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/User.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/User.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/User.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UserArrayResult.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,96 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UserArrayResult.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UserArrayResult.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UserArrayResult.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UserArrayResult.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UserResult.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,87 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UserResult.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UserResult.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UserResult.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/UserResult.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/VerbindungsTyp.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,38 +0,0 @@
-
-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);
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/VerbindungsTyp.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/VerbindungsTyp.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/VerbindungsTyp.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/VerbindungsTyp.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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);
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Verlustschein.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,642 +0,0 @@
-
-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;
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Verlustschein.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Verlustschein.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Verlustschein.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/Verlustschein.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/VerlustscheinArt.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,40 +0,0 @@
-
-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);
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/VerlustscheinArt.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/VerlustscheinArt.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/VerlustscheinArt.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/VerlustscheinArt.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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);
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/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 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/package-info.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,2 +0,0 @@
-(a)javax.xml.bind.annotation.XmlSchema(namespace = "http://example.com")
-package org.jboss.test.ws.jaxws.jbws1857.types;
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/package-info.java (from rev 5839, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/package-info.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/package-info.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1857/types/package-info.java 2008-05-09 21:33:49 UTC (rev 6998)
@@ -0,0 +1,2 @@
+(a)javax.xml.bind.annotation.XmlSchema(namespace = "http://example.com")
+package org.jboss.test.ws.jaxws.jbws1857.types;
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/resources/jaxws/jbws1857 (from rev 5839, stack/native/trunk/src/test/resources/jaxws/jbws1857)
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/resources/jaxws/jbws1857/StammdatenService.wsdl
===================================================================
--- stack/native/trunk/src/test/resources/jaxws/jbws1857/StammdatenService.wsdl 2008-02-28 10:40:41 UTC (rev 5839)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/resources/jaxws/jbws1857/StammdatenService.wsdl 2008-05-09 21:33:49 UTC (rev 6998)
@@ -1,1106 +0,0 @@
-<?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
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/resources/jaxws/jbws1857/StammdatenService.wsdl (from rev 5839, stack/native/trunk/src/test/resources/jaxws/jbws1857/StammdatenService.wsdl)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/resources/jaxws/jbws1857/StammdatenService.wsdl (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/resources/jaxws/jbws1857/StammdatenService.wsdl 2008-05-09 21:33:49 UTC (rev 6998)
@@ -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
16 years, 8 months
JBossWS SVN: r6997 - in stack/native/trunk/modules/testsuite: native-tests/src/test/resources/jaxrpc/samples/wssecurity/store-pass-encrypt and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-05-09 17:26:43 -0400 (Fri, 09 May 2008)
New Revision: 6997
Modified:
stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/samples/wssecurity/store-pass-encrypt/jboss-wsse-server.xml
stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/wsse/store-pass-encrypt-class-cmd/jboss-wsse-server.xml
stack/native/trunk/modules/testsuite/pom.xml
Log:
Fix StorePassEncryptTestCase
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/samples/wssecurity/store-pass-encrypt/jboss-wsse-server.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/samples/wssecurity/store-pass-encrypt/jboss-wsse-server.xml 2008-05-09 21:11:22 UTC (rev 6996)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/samples/wssecurity/store-pass-encrypt/jboss-wsse-server.xml 2008-05-09 21:26:43 UTC (rev 6997)
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<jboss-ws-security xmlns="http://www.jboss.com/ws-security/config" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.jboss.com/ws-security/config http://www.jboss.com/ws-security/schema/jboss-ws-security_1_0.xsd">
<key-store-file>WEB-INF/wsse.keystore</key-store-file>
- <key-store-password>{EXT}@java.home(a)/bin/java -cp @tests.output.dir@/test-classes org.jboss.test.ws.jaxrpc.samples.wssecurity.PasswordUtil @test.resources.directory(a)/jaxrpc/samples/wssecurity/keystore.password</key-store-password>
+ <key-store-password>{EXT}@java.home(a)/bin/java -cp @test.classes.directory@ org.jboss.test.ws.jaxrpc.samples.wssecurity.PasswordUtil @test.resources.directory(a)/jaxrpc/samples/wssecurity/keystore.password</key-store-password>
<trust-store-file>WEB-INF/wsse.truststore</trust-store-file>
<trust-store-password>{CLASS}org.jboss.security.plugins.FilePassword:@test.resources.directory@/jaxrpc/samples/wssecurity/keystore.password</trust-store-password>
<config>
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/wsse/store-pass-encrypt-class-cmd/jboss-wsse-server.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/wsse/store-pass-encrypt-class-cmd/jboss-wsse-server.xml 2008-05-09 21:11:22 UTC (rev 6996)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/wsse/store-pass-encrypt-class-cmd/jboss-wsse-server.xml 2008-05-09 21:26:43 UTC (rev 6997)
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<jboss-ws-security xmlns="http://www.jboss.com/ws-security/config" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.jboss.com/ws-security/config http://www.jboss.com/ws-security/schema/jboss-ws-security_1_0.xsd">
<key-store-file>WEB-INF/wsse.keystore</key-store-file>
- <key-store-password>{EXT}@java.home(a)/bin/java -cp @tests.output.dir@/test-classes org.jboss.test.ws.jaxrpc.wsse.PasswordUtil @test.resources.directory(a)/jaxrpc/wsse/keystore.password</key-store-password>
+ <key-store-password>{EXT}@java.home(a)/bin/java -cp @test.classes.directory@ org.jboss.test.ws.jaxrpc.wsse.PasswordUtil @test.resources.directory(a)/jaxrpc/wsse/keystore.password</key-store-password>
<trust-store-file>WEB-INF/wsse.truststore</trust-store-file>
<trust-store-password>{CLASS}org.jboss.security.plugins.FilePassword:@test.resources.directory@/jaxrpc/wsse/keystore.password</trust-store-password>
<config>
Modified: stack/native/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/pom.xml 2008-05-09 21:11:22 UTC (rev 6996)
+++ stack/native/trunk/modules/testsuite/pom.xml 2008-05-09 21:26:43 UTC (rev 6997)
@@ -19,6 +19,7 @@
<surefire.security.args>-Djava.security.manager -Djava.security.policy=src/test/etc/tst.policy</surefire.security.args>
<surefire.jdwp.args>-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005</surefire.jdwp.args>
<test.archive.directory>${project.build.directory}/test-libs</test.archive.directory>
+ <test.classes.directory>${project.build.directory}/test-classes</test.classes.directory>
<test.resources.directory>${project.build.directory}/test-resources</test.resources.directory>
<wsdl.publish.location>${project.build.directory}/wsdl-publish</wsdl.publish.location>
</properties>
@@ -188,6 +189,10 @@
<value>${test.archive.directory}</value>
</property>
<property>
+ <name>test.classes.directory</name>
+ <value>${test.classes.directory}</value>
+ </property>
+ <property>
<name>test.resources.directory</name>
<value>${test.resources.directory}</value>
</property>
16 years, 8 months
JBossWS SVN: r6996 - in stack/native/trunk/modules/testsuite: native-tests/src/test/java/org/jboss/test/ws/jaxrpc/wsdlpublish and 4 other directories.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-05-09 17:11:22 -0400 (Fri, 09 May 2008)
New Revision: 6996
Modified:
stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/wsdlpublish/WsdlPublishTestCase.java
stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/samples/jsr109ejb/rpclit/META-INF/jboss-client.xml
stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/samples/jsr109ejb/rpclit/META-INF/jboss.xml
stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/samples/jsr109pojo/rpclit/META-INF/jboss-client.xml
stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/samples/jsr109pojo/rpclit/WEB-INF/jboss-web.xml
stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/wsdlpublish/WEB-INF/jboss-web.xml
stack/native/trunk/modules/testsuite/pom.xml
Log:
Fif wsdl-publish-location
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/wsdlpublish/WsdlPublishTestCase.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/wsdlpublish/WsdlPublishTestCase.java 2008-05-09 20:59:29 UTC (rev 6995)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/wsdlpublish/WsdlPublishTestCase.java 2008-05-09 21:11:22 UTC (rev 6996)
@@ -55,7 +55,8 @@
TestEndpoint port = (TestEndpoint)service.getPort(TestEndpoint.class);
- String resStr = port.echoSimple(new File("wsdl-publish/some-wsdl-location/foo/bar/TestService.wsdl").getAbsolutePath());
+ String dir = System.getProperty("wsdl.publish.location");
+ String resStr = port.echoSimple(new File(dir + "/some-wsdl-location/foo/bar/TestService.wsdl").getAbsolutePath());
assertEquals("{http://org.jboss.test.ws/wsdlpublish}TestEndpoint", resStr);
}
}
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/samples/jsr109ejb/rpclit/META-INF/jboss-client.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/samples/jsr109ejb/rpclit/META-INF/jboss-client.xml 2008-05-09 20:59:29 UTC (rev 6995)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/samples/jsr109ejb/rpclit/META-INF/jboss-client.xml 2008-05-09 21:11:22 UTC (rev 6996)
@@ -7,7 +7,7 @@
<service-ref>
<service-ref-name>service/TestServiceEJB</service-ref-name>
- <wsdl-override>file:@wsdl-publish-location@/jsr109ejb/TestService.wsdl</wsdl-override>
+ <wsdl-override>file:@wsdl.publish.location@/jsr109ejb/TestService.wsdl</wsdl-override>
</service-ref>
</jboss-client>
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/samples/jsr109ejb/rpclit/META-INF/jboss.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/samples/jsr109ejb/rpclit/META-INF/jboss.xml 2008-05-09 20:59:29 UTC (rev 6995)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/samples/jsr109ejb/rpclit/META-INF/jboss.xml 2008-05-09 21:11:22 UTC (rev 6996)
@@ -8,7 +8,7 @@
<context-root>/jaxrpc-samples-jsr109ejb-rpc</context-root>
<webservice-description>
<webservice-description-name>TestService</webservice-description-name>
- <wsdl-publish-location>file:@wsdl-publish-location@/jsr109ejb</wsdl-publish-location>
+ <wsdl-publish-location>file:@wsdl.publish.location@/jsr109ejb</wsdl-publish-location>
</webservice-description>
</webservices>
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/samples/jsr109pojo/rpclit/META-INF/jboss-client.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/samples/jsr109pojo/rpclit/META-INF/jboss-client.xml 2008-05-09 20:59:29 UTC (rev 6995)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/samples/jsr109pojo/rpclit/META-INF/jboss-client.xml 2008-05-09 21:11:22 UTC (rev 6996)
@@ -7,7 +7,7 @@
<service-ref>
<service-ref-name>service/TestServiceJSE</service-ref-name>
- <wsdl-override>file:@wsdl-publish-location@/jsr109pojo/TestService.wsdl</wsdl-override>
+ <wsdl-override>file:@wsdl.publish.location@/jsr109pojo/TestService.wsdl</wsdl-override>
</service-ref>
</jboss-client>
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/samples/jsr109pojo/rpclit/WEB-INF/jboss-web.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/samples/jsr109pojo/rpclit/WEB-INF/jboss-web.xml 2008-05-09 20:59:29 UTC (rev 6995)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/samples/jsr109pojo/rpclit/WEB-INF/jboss-web.xml 2008-05-09 21:11:22 UTC (rev 6996)
@@ -6,7 +6,7 @@
<webservice-description>
<webservice-description-name>TestService</webservice-description-name>
- <wsdl-publish-location>file:@wsdl-publish-location@/jsr109pojo</wsdl-publish-location>
+ <wsdl-publish-location>file:@wsdl.publish.location@/jsr109pojo</wsdl-publish-location>
</webservice-description>
</jboss-web>
\ No newline at end of file
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/wsdlpublish/WEB-INF/jboss-web.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/wsdlpublish/WEB-INF/jboss-web.xml 2008-05-09 20:59:29 UTC (rev 6995)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/wsdlpublish/WEB-INF/jboss-web.xml 2008-05-09 21:11:22 UTC (rev 6996)
@@ -4,6 +4,6 @@
<jboss-web>
<webservice-description>
<webservice-description-name>TestService</webservice-description-name>
- <wsdl-publish-location>file:@wsdl-publish-location@/some-wsdl-location</wsdl-publish-location>
+ <wsdl-publish-location>file:@wsdl.publish.location@/some-wsdl-location</wsdl-publish-location>
</webservice-description>
</jboss-web>
Modified: stack/native/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/pom.xml 2008-05-09 20:59:29 UTC (rev 6995)
+++ stack/native/trunk/modules/testsuite/pom.xml 2008-05-09 21:11:22 UTC (rev 6996)
@@ -20,6 +20,7 @@
<surefire.jdwp.args>-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005</surefire.jdwp.args>
<test.archive.directory>${project.build.directory}/test-libs</test.archive.directory>
<test.resources.directory>${project.build.directory}/test-resources</test.resources.directory>
+ <wsdl.publish.location>${project.build.directory}/wsdl-publish</wsdl.publish.location>
</properties>
<!-- Modules -->
@@ -190,6 +191,10 @@
<name>test.resources.directory</name>
<value>${test.resources.directory}</value>
</property>
+ <property>
+ <name>wsdl.publish.location</name>
+ <value>${wsdl.publish.location}</value>
+ </property>
</systemProperties>
</configuration>
</plugin>
16 years, 8 months
JBossWS SVN: r6995 - in stack/native/branches/jbossws-native-2.0.1.SP2_CP: src/main/java/org/jboss/ws/core/binding and 8 other directories.
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2008-05-09 16:59:29 -0400 (Fri, 09 May 2008)
New Revision: 6995
Added:
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/DocRequest.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/DocResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/Endpoint.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/EndpointImpl.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/JBWS1809TestCase.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/resources/jaxws/jbws1809/
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/resources/jaxws/jbws1809/META-INF/
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/resources/jaxws/jbws1809/META-INF/jaxb-intros.xml
Removed:
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/DocRequest.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/DocResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/Endpoint.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/EndpointImpl.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/JBWS1809TestCase.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/resources/jaxws/jbws1809/META-INF/
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/resources/jaxws/jbws1809/META-INF/jaxb-intros.xml
Modified:
stack/native/branches/jbossws-native-2.0.1.SP2_CP/ant-import-tests/build-jars-jaxws.xml
stack/native/branches/jbossws-native-2.0.1.SP2_CP/ant-import-tests/build-testsuite.xml
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/binding/ComplexTypeDeserializer.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/binding/ComplexTypeSerializer.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/jaxws/CustomizableJAXBContextFactory.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/jaxws/JAXBContextFactory.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/jaxws/JAXBDeserializer.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/jaxws/JAXBSerializer.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSMetaDataBuilder.java
stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/resources/jbossws-native-config.xml
Log:
[JBPAPP-832] JAXBIntros are not taken into consideration when generating the WSDL.
Modified: stack/native/branches/jbossws-native-2.0.1.SP2_CP/ant-import-tests/build-jars-jaxws.xml
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/ant-import-tests/build-jars-jaxws.xml 2008-05-09 20:58:51 UTC (rev 6994)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/ant-import-tests/build-jars-jaxws.xml 2008-05-09 20:59:29 UTC (rev 6995)
@@ -403,6 +403,16 @@
</fileset>
</jar>
+ <!-- jaxws-jbws1809 -->
+ <jar destfile="${tests.output.dir}/libs/jaxws-jbws1809.jar">
+ <fileset dir="${tests.output.dir}/classes">
+ <include name="org/jboss/test/ws/jaxws/jbws1809/*.class"/>
+ <exclude name="org/jboss/test/ws/jaxws/jbws1809/*TestCase.class"/>
+ </fileset>
+ <metainf dir="${tests.output.dir}/resources/jaxws/jbws1809/META-INF"/>
+ </jar>
+
+
<!-- jaxws namespace -->
<war warfile="${tests.output.dir}/libs/jaxws-namespace.war" webxml="${tests.output.dir}/resources/jaxws/namespace/WEB-INF/web.xml">
<classes dir="${tests.output.dir}/classes">
Modified: stack/native/branches/jbossws-native-2.0.1.SP2_CP/ant-import-tests/build-testsuite.xml
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/ant-import-tests/build-testsuite.xml 2008-05-09 20:58:51 UTC (rev 6994)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/ant-import-tests/build-testsuite.xml 2008-05-09 20:59:29 UTC (rev 6995)
@@ -178,7 +178,7 @@
<classpath location="${tests.output.dir}/resources/jaxws/samples/wssecurityAnnotatedpolicy"/>
</taskdef>
- <wsprovide resourcedestdir="${tests.output.dir}/wsprovide/resources/jaxws/samples/wssecurity" genwsdl="true" sei="org.jboss.test.ws.jaxws.samples.wssecurity.HelloJavaBean"/>
+ <wsprovide resourcedestdir="${tests.output.dir}/wsprovide/resources/jaxws/samples/wssecurity" genwsdl="true" sei="org.jboss.test.ws.jaxws.samples.wssecurity.HelloJavaBean" verbose="true"/>
<wsprovide resourcedestdir="${tests.output.dir}/wsprovide/resources/jaxws/samples/wssecurityAnnotatedpolicy" genwsdl="true" sei="org.jboss.test.ws.jaxws.samples.wssecurityAnnotatedpolicy.HelloJavaBean"/>
</target>
Modified: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/binding/ComplexTypeDeserializer.java
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/binding/ComplexTypeDeserializer.java 2008-05-09 20:58:51 UTC (rev 6994)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/binding/ComplexTypeDeserializer.java 2008-05-09 20:59:29 UTC (rev 6995)
@@ -21,8 +21,11 @@
*/
package org.jboss.ws.core.binding;
+import org.jboss.wsf.spi.binding.BindingCustomization;
+import org.jboss.ws.metadata.umdm.EndpointMetaData;
+import org.jboss.ws.metadata.umdm.ServerEndpointMetaData;
+import org.jboss.ws.core.soap.MessageContextAssociation;
-
// $Id$
/**
@@ -34,4 +37,14 @@
public abstract class ComplexTypeDeserializer extends DeserializerSupport
{
+ protected BindingCustomization getBindingCustomization()
+ {
+ BindingCustomization bindingCustomization = null;
+ EndpointMetaData epMetaData = MessageContextAssociation.peekMessageContext().getEndpointMetaData();
+ if(epMetaData instanceof ServerEndpointMetaData)
+ {
+ bindingCustomization = ((ServerEndpointMetaData)epMetaData).getEndpoint().getAttachment(BindingCustomization.class);
+ }
+ return bindingCustomization;
+ }
}
Modified: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/binding/ComplexTypeSerializer.java
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/binding/ComplexTypeSerializer.java 2008-05-09 20:58:51 UTC (rev 6994)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/binding/ComplexTypeSerializer.java 2008-05-09 20:59:29 UTC (rev 6995)
@@ -21,9 +21,11 @@
*/
package org.jboss.ws.core.binding;
+import org.jboss.wsf.spi.binding.BindingCustomization;
+import org.jboss.ws.metadata.umdm.EndpointMetaData;
+import org.jboss.ws.metadata.umdm.ServerEndpointMetaData;
+import org.jboss.ws.core.soap.MessageContextAssociation;
-
-
// $Id: ComplexTypeSerializer.java 1757 2006-12-22 15:40:24Z thomas.diesler(a)jboss.com $
/**
@@ -34,5 +36,14 @@
*/
public abstract class ComplexTypeSerializer extends SerializerSupport
{
-
+ protected BindingCustomization getBindingCustomization()
+ {
+ BindingCustomization bindingCustomization = null;
+ EndpointMetaData epMetaData = MessageContextAssociation.peekMessageContext().getEndpointMetaData();
+ if(epMetaData instanceof ServerEndpointMetaData)
+ {
+ bindingCustomization = ((ServerEndpointMetaData)epMetaData).getEndpoint().getAttachment(BindingCustomization.class);
+ }
+ return bindingCustomization;
+ }
}
Modified: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/jaxws/CustomizableJAXBContextFactory.java
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/jaxws/CustomizableJAXBContextFactory.java 2008-05-09 20:58:51 UTC (rev 6994)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/jaxws/CustomizableJAXBContextFactory.java 2008-05-09 20:59:29 UTC (rev 6995)
@@ -21,18 +21,25 @@
*/
package org.jboss.ws.core.jaxws;
+import com.sun.xml.bind.api.JAXBRIContext;
+import com.sun.xml.bind.api.TypeReference;
+import com.sun.xml.bind.v2.model.annotation.RuntimeAnnotationReader;
+import org.jboss.logging.Logger;
import org.jboss.ws.WSException;
-import org.jboss.ws.core.CommonMessageContext;
-import org.jboss.ws.core.soap.MessageContextAssociation;
import org.jboss.wsf.spi.binding.BindingCustomization;
+import org.jboss.wsf.spi.deployment.Endpoint;
+import org.jboss.wsf.spi.invocation.EndpointAssociation;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
-import java.util.Iterator;
+import java.util.Collection;
/**
* The default factory checks if a {@link JAXBBindingCustomization} exists
* and uses it to customize the JAXBContext that will be created.
+ * <p>
+ * It uses the {@link org.jboss.wsf.spi.invocation.EndpointAssociation} to access customizations
+ * if they are not passed explicitly.
*
* @see org.jboss.wsf.spi.deployment.Endpoint
* @see org.jboss.wsf.spi.binding.BindingCustomization
@@ -46,45 +53,68 @@
*/
public class CustomizableJAXBContextFactory extends JAXBContextFactory
{
+ protected Logger log = Logger.getLogger(CustomizableJAXBContextFactory.class);
+
+ public JAXBContext createContext(Class clazz) throws WSException
+ {
+ return createContext(new Class[] {clazz});
+ }
+
public JAXBContext createContext(Class[] clazzes) throws WSException
{
try
{
BindingCustomization customization = getCustomization();
+
+ JAXBContext jaxbCtx;
if(null == customization)
- return JAXBContext.newInstance(clazzes);
+ jaxbCtx = JAXBContext.newInstance(clazzes);
else
- return JAXBContext.newInstance(clazzes, customization);
+ jaxbCtx = createContext(clazzes, customization);
+
+ return jaxbCtx;
}
catch (JAXBException e) {
throw new WSException("Failed to create JAXBContext", e);
}
}
- public JAXBContext createContext(Class clazz) throws WSException
+ public JAXBContext createContext(Class[] clazzes, BindingCustomization bindingCustomization) throws WSException
{
- return createContext(new Class[] {clazz});
+ try
+ {
+ return JAXBContext.newInstance(clazzes, bindingCustomization);
+ }
+ catch (JAXBException e) {
+ throw new WSException("Failed to create JAXBContext", e);
+ }
}
- private BindingCustomization getCustomization()
+ public JAXBRIContext createContext(
+ Class[] classes, Collection<TypeReference> typeReferences,
+ String defaultNamespaceRemap, boolean c14nSupport, BindingCustomization bindingCustomization)
{
- BindingCustomization customization = null;
+ try
+ {
+ RuntimeAnnotationReader runtimeAnnotations = bindingCustomization!=null ?
+ (RuntimeAnnotationReader)bindingCustomization.get(JAXBRIContext.ANNOTATION_READER) : null;
- CommonMessageContext msgContext = MessageContextAssociation.peekMessageContext();
- if(msgContext!=null) // may not be available anytime
- {
- Iterator<BindingCustomization> it = msgContext.getEndpointMetaData().getBindingCustomizations().iterator();
- while(it.hasNext())
- {
- BindingCustomization current = it.next();
- if(current instanceof JAXBBindingCustomization)
- {
- customization = current;
- break;
- }
- }
+ return JAXBRIContext.newInstance(
+ classes, typeReferences,
+ null,
+ defaultNamespaceRemap, c14nSupport ,
+ runtimeAnnotations
+ );
+
}
+ catch (JAXBException e) {
+ throw new WSException("Failed to create JAXBContext", e);
+ }
+ }
- return customization;
+ private BindingCustomization getCustomization()
+ {
+ Endpoint threadLocal = EndpointAssociation.getEndpoint();
+ return threadLocal!=null ? threadLocal.getAttachment(BindingCustomization.class):null;
}
}
Modified: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/jaxws/JAXBContextFactory.java
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/jaxws/JAXBContextFactory.java 2008-05-09 20:58:51 UTC (rev 6994)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/jaxws/JAXBContextFactory.java 2008-05-09 20:59:29 UTC (rev 6995)
@@ -23,9 +23,15 @@
import org.jboss.ws.WSException;
import org.jboss.wsf.spi.util.ServiceLoader;
+import org.jboss.wsf.spi.binding.BindingCustomization;
import javax.xml.bind.JAXBContext;
+import com.sun.xml.bind.api.TypeReference;
+import com.sun.xml.bind.api.JAXBRIContext;
+
+import java.util.Collection;
+
/**
* Creates JAXBContext's.<p>
*
@@ -36,10 +42,16 @@
public final static String DEFAULT_JAXB_CONTEXT_FACTORY = "org.jboss.ws.core.jaxws.CustomizableJAXBContextFactory";
+ public abstract JAXBContext createContext(Class[] clazzes, BindingCustomization bindingCustomization) throws WSException;
+
public abstract JAXBContext createContext(Class[] clazzes) throws WSException;
public abstract JAXBContext createContext(Class clazz) throws WSException;
+ public abstract JAXBRIContext createContext(
+ Class[] classes, Collection<TypeReference> typeReferences,
+ String defaultNamespaceRemap, boolean c14nSupport, BindingCustomization bindingCustomization);
+
/**
* Retrieve JAXBContextFactory instance through the {@link org.jboss.wsf.spi.util.ServiceLoader}.
* Defaults to {@link CustomizableJAXBContextFactory}
Modified: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/jaxws/JAXBDeserializer.java
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/jaxws/JAXBDeserializer.java 2008-05-09 20:58:51 UTC (rev 6994)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/jaxws/JAXBDeserializer.java 2008-05-09 20:59:29 UTC (rev 6995)
@@ -28,7 +28,12 @@
import org.jboss.ws.core.binding.TypeMappingImpl;
import org.jboss.ws.core.binding.ComplexTypeDeserializer;
import org.jboss.ws.core.binding.SerializationContext;
+import org.jboss.ws.core.soap.MessageContextAssociation;
+import org.jboss.ws.metadata.umdm.EndpointMetaData;
+import org.jboss.ws.metadata.umdm.ServerEndpointMetaData;
import org.jboss.logging.Logger;
+import org.jboss.wsf.spi.deployment.Endpoint;
+import org.jboss.wsf.spi.binding.BindingCustomization;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBElement;
@@ -88,11 +93,13 @@
* @return JAXBContext
*/
private JAXBContext getJAXBContext(Class[] types){
+
JAXBContextCache cache = JAXBContextCache.getContextCache();
JAXBContext context = cache.get(types);
if(null==context)
{
- context = JAXBContextFactory.newInstance().createContext(types);
+ BindingCustomization bindingCustomization = getBindingCustomization();
+ context = JAXBContextFactory.newInstance().createContext(types, bindingCustomization);
cache.add(types, context);
}
return context;
Modified: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/jaxws/JAXBSerializer.java
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/jaxws/JAXBSerializer.java 2008-05-09 20:58:51 UTC (rev 6994)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/core/jaxws/JAXBSerializer.java 2008-05-09 20:59:29 UTC (rev 6995)
@@ -29,6 +29,7 @@
import org.jboss.ws.core.binding.ComplexTypeSerializer;
import org.jboss.ws.core.binding.SerializationContext;
import org.jboss.ws.core.binding.BufferedStreamResult;
+import org.jboss.wsf.spi.binding.BindingCustomization;
import org.w3c.dom.NamedNodeMap;
import javax.xml.bind.JAXBContext;
@@ -99,7 +100,8 @@
JAXBContext context = cache.get(types);
if(null==context)
{
- context = JAXBContextFactory.newInstance().createContext(types);
+ BindingCustomization bindingCustomization = getBindingCustomization();
+ context = JAXBContextFactory.newInstance().createContext(types, bindingCustomization);
cache.add(types, context);
}
return context;
Modified: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSMetaDataBuilder.java
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSMetaDataBuilder.java 2008-05-09 20:58:51 UTC (rev 6994)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSMetaDataBuilder.java 2008-05-09 20:59:29 UTC (rev 6995)
@@ -23,42 +23,13 @@
// $Id$
-import java.io.File;
-import java.io.InputStream;
-import java.lang.annotation.Annotation;
-import java.lang.reflect.Method;
-import java.lang.reflect.ParameterizedType;
-import java.lang.reflect.Type;
-import java.net.MalformedURLException;
-import java.net.URL;
-import java.rmi.RemoteException;
-import java.util.ArrayList;
-import java.util.Collection;
-import java.util.List;
-import java.util.Map;
-
-import javax.jws.HandlerChain;
-import javax.jws.Oneway;
-import javax.jws.WebMethod;
-import javax.jws.WebParam;
-import javax.jws.WebResult;
-import javax.jws.soap.SOAPBinding;
-import javax.jws.soap.SOAPMessageHandlers;
-import javax.jws.soap.SOAPBinding.ParameterStyle;
-import javax.xml.bind.JAXBException;
-import javax.xml.namespace.QName;
-import javax.xml.rpc.ParameterMode;
-import javax.xml.ws.BindingType;
-import javax.xml.ws.RequestWrapper;
-import javax.xml.ws.ResponseWrapper;
-import javax.xml.ws.WebFault;
-import javax.xml.ws.addressing.Action;
-import javax.xml.ws.addressing.AddressingProperties;
-
+import com.sun.xml.bind.api.JAXBRIContext;
+import com.sun.xml.bind.api.TypeReference;
import org.jboss.logging.Logger;
import org.jboss.ws.Constants;
import org.jboss.ws.WSException;
import org.jboss.ws.core.jaxws.DynamicWrapperGenerator;
+import org.jboss.ws.core.jaxws.JAXBContextFactory;
import org.jboss.ws.core.jaxws.WrapperGenerator;
import org.jboss.ws.core.soap.Style;
import org.jboss.ws.core.soap.Use;
@@ -75,6 +46,7 @@
import org.jboss.ws.metadata.umdm.HandlerMetaDataJAXWS;
import org.jboss.ws.metadata.umdm.OperationMetaData;
import org.jboss.ws.metadata.umdm.ParameterMetaData;
+import org.jboss.ws.metadata.umdm.ServerEndpointMetaData;
import org.jboss.ws.metadata.umdm.TypeMappingMetaData;
import org.jboss.ws.metadata.umdm.TypesMetaData;
import org.jboss.ws.metadata.umdm.WrappedParameter;
@@ -83,18 +55,47 @@
import org.jboss.ws.metadata.wsdl.WSDLBindingOperation;
import org.jboss.ws.metadata.wsdl.WSDLDefinitions;
import org.jboss.ws.metadata.wsdl.WSDLMIMEPart;
+import org.jboss.wsf.common.JavaUtils;
+import org.jboss.wsf.spi.binding.BindingCustomization;
import org.jboss.wsf.spi.metadata.j2ee.serviceref.HandlerChainsObjectFactory;
import org.jboss.wsf.spi.metadata.j2ee.serviceref.UnifiedHandlerChainMetaData;
import org.jboss.wsf.spi.metadata.j2ee.serviceref.UnifiedHandlerChainsMetaData;
import org.jboss.wsf.spi.metadata.j2ee.serviceref.UnifiedHandlerMetaData;
import org.jboss.wsf.spi.metadata.j2ee.serviceref.UnifiedHandlerMetaData.HandlerType;
-import org.jboss.wsf.common.JavaUtils;
+import org.jboss.wsf.spi.deployment.Endpoint;
import org.jboss.xb.binding.ObjectModelFactory;
import org.jboss.xb.binding.Unmarshaller;
import org.jboss.xb.binding.UnmarshallerFactory;
-import com.sun.xml.bind.api.JAXBRIContext;
-import com.sun.xml.bind.api.TypeReference;
+import javax.jws.HandlerChain;
+import javax.jws.Oneway;
+import javax.jws.WebMethod;
+import javax.jws.WebParam;
+import javax.jws.WebResult;
+import javax.jws.soap.SOAPBinding;
+import javax.jws.soap.SOAPBinding.ParameterStyle;
+import javax.jws.soap.SOAPMessageHandlers;
+import javax.xml.namespace.QName;
+import javax.xml.rpc.ParameterMode;
+import javax.xml.ws.BindingType;
+import javax.xml.ws.RequestWrapper;
+import javax.xml.ws.ResponseWrapper;
+import javax.xml.ws.WebFault;
+import javax.xml.ws.addressing.Action;
+import javax.xml.ws.addressing.AddressingProperties;
+import java.io.File;
+import java.io.InputStream;
+import java.lang.annotation.Annotation;
+import java.lang.reflect.Method;
+import java.lang.reflect.ParameterizedType;
+import java.lang.reflect.Type;
+import java.net.MalformedURLException;
+import java.net.URL;
+import java.rmi.RemoteException;
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.List;
+import java.util.Map;
/**
* Abstract class that represents a JAX-WS metadata builder.
@@ -918,9 +919,27 @@
String targetNS = epMetaData.getPortTypeName().getNamespaceURI().intern();
if (log.isDebugEnabled())
log.debug("JAXBContext [types=" + javaTypes + ",tns=" + targetNS + "]");
- jaxbCtx = JAXBRIContext.newInstance(javaTypes.toArray(new Class[0]), typeRefs, targetNS, false);
+
+ JAXBContextFactory factory = JAXBContextFactory.newInstance();
+
+
+ // JAXBIntros may mofiy the WSDL being generated
+ // only true for server side invocation, tooling (WSProvide) doesnt support this
+ BindingCustomization bindingCustomization = null;
+ if(epMetaData instanceof ServerEndpointMetaData)
+ {
+ Endpoint endpoint = ((ServerEndpointMetaData)epMetaData).getEndpoint();
+ bindingCustomization = endpoint!=null ? endpoint.getAttachment(BindingCustomization.class) : null;
+ }
+
+ jaxbCtx = factory.createContext(
+ javaTypes.toArray(new Class[0]),
+ typeRefs,
+ targetNS,
+ false, bindingCustomization
+ );
}
- catch (JAXBException ex)
+ catch (WSException ex)
{
throw new IllegalStateException("Cannot build JAXB context", ex);
}
Modified: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/resources/jbossws-native-config.xml
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/resources/jbossws-native-config.xml 2008-05-09 20:58:51 UTC (rev 6994)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/main/resources/jbossws-native-config.xml 2008-05-09 20:59:29 UTC (rev 6995)
@@ -61,7 +61,7 @@
</bean>
<bean name="WSNativePublishContractDeploymentAspect" class="org.jboss.wsf.stack.jbws.PublishContractDeploymentAspect">
- <property name="requires">UnifiedMetaDataModel</property>
+ <property name="requires">UnifiedMetaDataModel, JAXBIntros</property>
<property name="provides">PublishedContract</property>
</bean>
@@ -70,12 +70,12 @@
</bean>
<bean name="WSNativeUnifiedMetaDataDeploymentAspect" class="org.jboss.wsf.stack.jbws.UnifiedMetaDataDeploymentAspect">
- <property name="requires">RuntimeLoader, ContainerMetaData, URLPattern, VFSRoot</property>
+ <property name="requires">RuntimeLoader, ContainerMetaData, URLPattern, VFSRoot, JAXBIntros</property>
<property name="provides">UnifiedMetaDataModel</property>
</bean>
- <bean name="WSJAXBIntroDeploymentAspect" class="org.jboss.wsf.stack.jbws.JAXBIntroDeploymentAspect">
- <property name="requires">UnifiedMetaDataModel, RuntimeLoader</property>
+ <bean name="WSJAXBIntroDeploymentAspect" class="org.jboss.wsf.stack.jbws.JAXBIntroDeploymentAspect">
+ <property name="provides">JAXBIntros</property>
</bean>
<!-- Deployment aspect installers -->
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809 (from rev 4724, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1809)
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/DocRequest.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1809/DocRequest.java 2007-10-10 14:19:14 UTC (rev 4724)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/DocRequest.java 2008-05-09 20:59:29 UTC (rev 6995)
@@ -1,41 +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.test.ws.jaxws.jbws1809;
-
-/**
- * @author Heiko.Braun(a)jboss.com
- * @version $Revision$
- */
-public class DocRequest
-{
- String value;
-
- public String getValue()
- {
- return value;
- }
-
- public void setValue(String value)
- {
- this.value = value;
- }
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/DocRequest.java (from rev 4724, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1809/DocRequest.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/DocRequest.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/DocRequest.java 2008-05-09 20:59:29 UTC (rev 6995)
@@ -0,0 +1,41 @@
+/*
+ * 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.jbws1809;
+
+/**
+ * @author Heiko.Braun(a)jboss.com
+ * @version $Revision$
+ */
+public class DocRequest
+{
+ String value;
+
+ public String getValue()
+ {
+ return value;
+ }
+
+ public void setValue(String value)
+ {
+ this.value = value;
+ }
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/DocResponse.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1809/DocResponse.java 2007-10-10 14:19:14 UTC (rev 4724)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/DocResponse.java 2008-05-09 20:59:29 UTC (rev 6995)
@@ -1,42 +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.test.ws.jaxws.jbws1809;
-
-/**
- * @author Heiko.Braun(a)jboss.com
- * @version $Revision$
- */
-public class DocResponse
-{
- String value;
-
-
- public String getValue()
- {
- return value;
- }
-
- public void setValue(String value)
- {
- this.value = value;
- }
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/DocResponse.java (from rev 4724, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1809/DocResponse.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/DocResponse.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/DocResponse.java 2008-05-09 20:59:29 UTC (rev 6995)
@@ -0,0 +1,42 @@
+/*
+ * 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.jbws1809;
+
+/**
+ * @author Heiko.Braun(a)jboss.com
+ * @version $Revision$
+ */
+public class DocResponse
+{
+ String value;
+
+
+ public String getValue()
+ {
+ return value;
+ }
+
+ public void setValue(String value)
+ {
+ this.value = value;
+ }
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/Endpoint.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1809/Endpoint.java 2007-10-10 14:19:14 UTC (rev 4724)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/Endpoint.java 2008-05-09 20:59:29 UTC (rev 6995)
@@ -1,38 +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.test.ws.jaxws.jbws1809;
-
-import javax.ejb.Remote;
-import javax.jws.WebService;
-import javax.jws.soap.SOAPBinding;
-
-/**
- * @author Heiko.Braun(a)jboss.com
- * @version $Revision$
- */
-@Remote
-@WebService(targetNamespace = "http://org.jboss.ws/jaxbintro/wsdl")
-@SOAPBinding(style = SOAPBinding.Style.DOCUMENT, parameterStyle = SOAPBinding.ParameterStyle.BARE)
-public interface Endpoint
-{
- DocResponse processDocument(DocRequest req);
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/Endpoint.java (from rev 4724, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1809/Endpoint.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/Endpoint.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/Endpoint.java 2008-05-09 20:59:29 UTC (rev 6995)
@@ -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.test.ws.jaxws.jbws1809;
+
+import javax.ejb.Remote;
+import javax.jws.WebService;
+import javax.jws.soap.SOAPBinding;
+
+/**
+ * @author Heiko.Braun(a)jboss.com
+ * @version $Revision$
+ */
+@Remote
+@WebService(targetNamespace = "http://org.jboss.ws/jaxbintro/wsdl")
+@SOAPBinding(style = SOAPBinding.Style.DOCUMENT, parameterStyle = SOAPBinding.ParameterStyle.BARE)
+public interface Endpoint
+{
+ DocResponse processDocument(DocRequest req);
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/EndpointImpl.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1809/EndpointImpl.java 2007-10-10 14:19:14 UTC (rev 4724)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/EndpointImpl.java 2008-05-09 20:59:29 UTC (rev 6995)
@@ -1,46 +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.test.ws.jaxws.jbws1809;
-
-import javax.ejb.Stateless;
-import javax.jws.WebService;
-import javax.jws.soap.SOAPBinding;
-
-/**
- * @author Heiko.Braun(a)jboss.com
- * @version $Revision$
- */
-@Stateless
-@WebService(
- targetNamespace = "http://org.jboss.ws/jaxbintro/wsdl",
- endpointInterface = "org.jboss.test.ws.jaxws.jbws1809.Endpoint"
-)
-@SOAPBinding(style = SOAPBinding.Style.DOCUMENT, parameterStyle = SOAPBinding.ParameterStyle.BARE)
-public class EndpointImpl implements Endpoint
-{
- public DocResponse processDocument(DocRequest req)
- {
- DocResponse res = new DocResponse();
- res.setValue(req.getValue()+"Response");
- return res;
- }
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/EndpointImpl.java (from rev 4724, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1809/EndpointImpl.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/EndpointImpl.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/EndpointImpl.java 2008-05-09 20:59:29 UTC (rev 6995)
@@ -0,0 +1,46 @@
+/*
+ * 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.jbws1809;
+
+import javax.ejb.Stateless;
+import javax.jws.WebService;
+import javax.jws.soap.SOAPBinding;
+
+/**
+ * @author Heiko.Braun(a)jboss.com
+ * @version $Revision$
+ */
+@Stateless
+@WebService(
+ targetNamespace = "http://org.jboss.ws/jaxbintro/wsdl",
+ endpointInterface = "org.jboss.test.ws.jaxws.jbws1809.Endpoint"
+)
+@SOAPBinding(style = SOAPBinding.Style.DOCUMENT, parameterStyle = SOAPBinding.ParameterStyle.BARE)
+public class EndpointImpl implements Endpoint
+{
+ public DocResponse processDocument(DocRequest req)
+ {
+ DocResponse res = new DocResponse();
+ res.setValue(req.getValue()+"Response");
+ return res;
+ }
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/JBWS1809TestCase.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1809/JBWS1809TestCase.java 2007-10-10 14:19:14 UTC (rev 4724)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/JBWS1809TestCase.java 2008-05-09 20:59:29 UTC (rev 6995)
@@ -1,92 +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.test.ws.jaxws.jbws1809;
-
-import junit.framework.Test;
-import org.jboss.wsf.common.DOMUtils;
-import org.jboss.wsf.test.JBossWSTest;
-import org.jboss.wsf.test.JBossWSTestSetup;
-import org.jboss.ws.tools.wsdl.WSDLDefinitionsFactory;
-import org.jboss.ws.metadata.wsdl.WSDLDefinitions;
-import org.jboss.ws.metadata.wsdl.WSDLTypes;
-import org.jboss.ws.metadata.wsdl.DOMTypes;
-import org.jboss.ws.metadata.wsdl.XSModelTypes;
-import org.w3c.dom.Element;
-import org.w3c.dom.Node;
-
-import java.net.URL;
-import java.net.MalformedURLException;
-import java.util.Iterator;
-
-/**
- * Test the JAXBIntroduction features.
- *
- * Check if the WSDL is generated correctly.
- * The introduction should turn a property into a xsd:attribute declaration.
- *
- * @author heiko.braun(a)jboss.com
- */
-public class JBWS1809TestCase extends JBossWSTest
-{
- public static Test suite()
- {
- return new JBossWSTestSetup(JBWS1809TestCase.class, "jaxws-jbws1809.jar");
- }
-
- public void testWSDLAccess() throws Exception
- {
- URL wsdlURL = new URL("http://" + getServerHost() + ":8080/jaxws-jbws1809/EndpointImpl?wsdl");
- WSDLDefinitionsFactory factory = WSDLDefinitionsFactory.newInstance();
- WSDLDefinitions wsdlDefinitions = factory.parse(wsdlURL);
- assertNotNull("Unable to read WSDL definitions", wsdlDefinitions);
-
- XSModelTypes wsdlTypes = (XSModelTypes)wsdlDefinitions.getWsdlTypes();
-
- // convert XSModelTypes to dom representation
- // it's easier to consume...
-
- Element types = DOMUtils.parse(wsdlTypes.getSchemaModel().serialize());
- Iterator it = DOMUtils.getChildElements(types, "complexType");
-
- boolean foundAttributeDeclaration = false;
- while(it.hasNext())
- {
- Element next = (Element)it.next();
- if(DOMUtils.getAttributeValue(next, "name").equals("docRequest"))
- {
- Iterator it2 = DOMUtils.getChildElements(next, "attribute");
-
- while(it2.hasNext())
- {
- Element next2 = (Element)it2.next();
- if(DOMUtils.getAttributeValue(next2, "name").equals("value"))
- {
- foundAttributeDeclaration = true;
- }
- }
- }
- }
-
- assertTrue("JAXBIntros should turn the 'docRequest.name' property into a XML attribute", foundAttributeDeclaration);
-
- }
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/JBWS1809TestCase.java (from rev 4724, stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1809/JBWS1809TestCase.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/JBWS1809TestCase.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/java/org/jboss/test/ws/jaxws/jbws1809/JBWS1809TestCase.java 2008-05-09 20:59:29 UTC (rev 6995)
@@ -0,0 +1,92 @@
+/*
+ * 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.jbws1809;
+
+import junit.framework.Test;
+import org.jboss.wsf.common.DOMUtils;
+import org.jboss.wsf.test.JBossWSTest;
+import org.jboss.wsf.test.JBossWSTestSetup;
+import org.jboss.ws.tools.wsdl.WSDLDefinitionsFactory;
+import org.jboss.ws.metadata.wsdl.WSDLDefinitions;
+import org.jboss.ws.metadata.wsdl.WSDLTypes;
+import org.jboss.ws.metadata.wsdl.DOMTypes;
+import org.jboss.ws.metadata.wsdl.XSModelTypes;
+import org.w3c.dom.Element;
+import org.w3c.dom.Node;
+
+import java.net.URL;
+import java.net.MalformedURLException;
+import java.util.Iterator;
+
+/**
+ * Test the JAXBIntroduction features.
+ *
+ * Check if the WSDL is generated correctly.
+ * The introduction should turn a property into a xsd:attribute declaration.
+ *
+ * @author heiko.braun(a)jboss.com
+ */
+public class JBWS1809TestCase extends JBossWSTest
+{
+ public static Test suite()
+ {
+ return new JBossWSTestSetup(JBWS1809TestCase.class, "jaxws-jbws1809.jar");
+ }
+
+ public void testWSDLAccess() throws Exception
+ {
+ URL wsdlURL = new URL("http://" + getServerHost() + ":8080/jaxws-jbws1809/EndpointImpl?wsdl");
+ WSDLDefinitionsFactory factory = WSDLDefinitionsFactory.newInstance();
+ WSDLDefinitions wsdlDefinitions = factory.parse(wsdlURL);
+ assertNotNull("Unable to read WSDL definitions", wsdlDefinitions);
+
+ XSModelTypes wsdlTypes = (XSModelTypes)wsdlDefinitions.getWsdlTypes();
+
+ // convert XSModelTypes to dom representation
+ // it's easier to consume...
+
+ Element types = DOMUtils.parse(wsdlTypes.getSchemaModel().serialize());
+ Iterator it = DOMUtils.getChildElements(types, "complexType");
+
+ boolean foundAttributeDeclaration = false;
+ while(it.hasNext())
+ {
+ Element next = (Element)it.next();
+ if(DOMUtils.getAttributeValue(next, "name").equals("docRequest"))
+ {
+ Iterator it2 = DOMUtils.getChildElements(next, "attribute");
+
+ while(it2.hasNext())
+ {
+ Element next2 = (Element)it2.next();
+ if(DOMUtils.getAttributeValue(next2, "name").equals("value"))
+ {
+ foundAttributeDeclaration = true;
+ }
+ }
+ }
+ }
+
+ assertTrue("JAXBIntros should turn the 'docRequest.name' property into a XML attribute", foundAttributeDeclaration);
+
+ }
+}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/resources/jaxws/jbws1809 (from rev 4724, stack/native/trunk/src/test/resources/jaxws/jbws1809)
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/resources/jaxws/jbws1809/META-INF (from rev 4724, stack/native/trunk/src/test/resources/jaxws/jbws1809/META-INF)
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/resources/jaxws/jbws1809/META-INF/jaxb-intros.xml
===================================================================
--- stack/native/trunk/src/test/resources/jaxws/jbws1809/META-INF/jaxb-intros.xml 2007-10-10 14:19:14 UTC (rev 4724)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/resources/jaxws/jbws1809/META-INF/jaxb-intros.xml 2008-05-09 20:59:29 UTC (rev 6995)
@@ -1,26 +0,0 @@
-<?xml version = "1.0" encoding = "UTF-8"?>
-<jaxb-intros xmlns="http://www.jboss.org/xsd/jaxb/intros" default-namespace="http://org.jboss.ws/jaxbintro/wsdl">
-
- <!--
- The XSD for the schema can be found at:
- http://anonsvn.labs.jboss.com/labs/jbossesb/trunk/product/extras/jaxbintr...
- Register it against the http://www.jboss.org/xsd/jaxb/intros namespace in your IDE and away you go :-)
- -->
-
- <!--
- Note: how the "name" attributes on class, field and method configs can be regular expressions.
- -->
-
- <!--
- The type namespaces on the customerOrder are different from the rest of the message...
- -->
- <Class name="org.jboss.test.ws.jaxws.jbws1809.DocRequest">
- <XmlAccessorType value="FIELD"/>
- <XmlRootElement name="request" namespace="http://org.jboss.ws/jaxbintro/wsdl"/>
-
- <Field name="value">
- <XmlAttribute />
- </Field>
- </Class>
-
-</jaxb-intros>
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/resources/jaxws/jbws1809/META-INF/jaxb-intros.xml (from rev 4724, stack/native/trunk/src/test/resources/jaxws/jbws1809/META-INF/jaxb-intros.xml)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/resources/jaxws/jbws1809/META-INF/jaxb-intros.xml (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/src/test/resources/jaxws/jbws1809/META-INF/jaxb-intros.xml 2008-05-09 20:59:29 UTC (rev 6995)
@@ -0,0 +1,26 @@
+<?xml version = "1.0" encoding = "UTF-8"?>
+<jaxb-intros xmlns="http://www.jboss.org/xsd/jaxb/intros" default-namespace="http://org.jboss.ws/jaxbintro/wsdl">
+
+ <!--
+ The XSD for the schema can be found at:
+ http://anonsvn.labs.jboss.com/labs/jbossesb/trunk/product/extras/jaxbintr...
+ Register it against the http://www.jboss.org/xsd/jaxb/intros namespace in your IDE and away you go :-)
+ -->
+
+ <!--
+ Note: how the "name" attributes on class, field and method configs can be regular expressions.
+ -->
+
+ <!--
+ The type namespaces on the customerOrder are different from the rest of the message...
+ -->
+ <Class name="org.jboss.test.ws.jaxws.jbws1809.DocRequest">
+ <XmlAccessorType value="FIELD"/>
+ <XmlRootElement name="request" namespace="http://org.jboss.ws/jaxbintro/wsdl"/>
+
+ <Field name="value">
+ <XmlAttribute />
+ </Field>
+ </Class>
+
+</jaxb-intros>
16 years, 8 months
JBossWS SVN: r6994 - in stack/native/trunk/modules/testsuite: native-tests/src/test/resources/jaxrpc/jbws1384 and 5 other directories.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-05-09 16:58:51 -0400 (Fri, 09 May 2008)
New Revision: 6994
Modified:
stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/jbws1384/wstools-config.xml
stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/jbws958/wstools-config.xml
stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/samples/wssecurity/store-pass-encrypt/jboss-wsse-server.xml
stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/wsse/store-pass-encrypt-class-cmd/jboss-wsse-server.xml
stack/native/trunk/modules/testsuite/native-tests/src/test/resources/tools/config/wsdl2javaconfig.xml
stack/native/trunk/modules/testsuite/native-tests/src/test/resources/tools/config/xsd2javaconfig.xml
stack/native/trunk/modules/testsuite/native-tests/src/test/resources/tools/jbws-160/jbossws/simple/simplecaseconfig.xml
stack/native/trunk/modules/testsuite/pom.xml
Log:
Replace test-resources with @test.resources.directory@
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/jbws1384/wstools-config.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/jbws1384/wstools-config.xml 2008-05-09 20:27:32 UTC (rev 6993)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/jbws1384/wstools-config.xml 2008-05-09 20:58:51 UTC (rev 6994)
@@ -13,7 +13,7 @@
<package-namespace package="org.jboss.test.ws.jaxrpc.jbws1384" namespace="http://org.jboss.test.webservice/samples2"/>
</global>
- <wsdl-java location="test-resources/jaxrpc/jbws1384/WEB-INF/wsdl/ExampleService.wsdl">
+ <wsdl-java location="@test.resources.directory(a)/jaxrpc/jbws1384/WEB-INF/wsdl/ExampleService.wsdl">
<mapping file="jaxrpc-mapping.xml" />
<webservices servlet-link="ExampleService" />
</wsdl-java>
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/jbws958/wstools-config.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/jbws958/wstools-config.xml 2008-05-09 20:27:32 UTC (rev 6993)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/jbws958/wstools-config.xml 2008-05-09 20:58:51 UTC (rev 6994)
@@ -12,7 +12,7 @@
<global>
<package-namespace package="org.jboss.test.ws.jaxrpc.jbws958" namespace="http://services.iplsprovisioning.tsi.com"/>
</global>
- <wsdl-java location="test-resources/jaxrpc/jbws958/WEB-INF/wsdl/IPLSProvisioning.wsdl">
+ <wsdl-java location="@test.resources.directory(a)/jaxrpc/jbws958/WEB-INF/wsdl/IPLSProvisioning.wsdl">
<mapping file="jaxrpc-mapping.xml" />
</wsdl-java>
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/samples/wssecurity/store-pass-encrypt/jboss-wsse-server.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/samples/wssecurity/store-pass-encrypt/jboss-wsse-server.xml 2008-05-09 20:27:32 UTC (rev 6993)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/samples/wssecurity/store-pass-encrypt/jboss-wsse-server.xml 2008-05-09 20:58:51 UTC (rev 6994)
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<jboss-ws-security xmlns="http://www.jboss.com/ws-security/config" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.jboss.com/ws-security/config http://www.jboss.com/ws-security/schema/jboss-ws-security_1_0.xsd">
<key-store-file>WEB-INF/wsse.keystore</key-store-file>
- <key-store-password>{EXT}@java.home(a)/bin/java -cp @tests.output.dir@/test-classes org.jboss.test.ws.jaxrpc.samples.wssecurity.PasswordUtil @tests.output.dir(a)/test-resources/jaxrpc/samples/wssecurity/keystore.password</key-store-password>
+ <key-store-password>{EXT}@java.home(a)/bin/java -cp @tests.output.dir@/test-classes org.jboss.test.ws.jaxrpc.samples.wssecurity.PasswordUtil @test.resources.directory(a)/jaxrpc/samples/wssecurity/keystore.password</key-store-password>
<trust-store-file>WEB-INF/wsse.truststore</trust-store-file>
- <trust-store-password>{CLASS}org.jboss.security.plugins.FilePassword:@tests.output.dir@/test-resources/jaxrpc/samples/wssecurity/keystore.password</trust-store-password>
+ <trust-store-password>{CLASS}org.jboss.security.plugins.FilePassword:@test.resources.directory@/jaxrpc/samples/wssecurity/keystore.password</trust-store-password>
<config>
<sign type="x509v3" alias="wsse"/>
<encrypt type="x509v3" alias="wsse"/>
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/wsse/store-pass-encrypt-class-cmd/jboss-wsse-server.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/wsse/store-pass-encrypt-class-cmd/jboss-wsse-server.xml 2008-05-09 20:27:32 UTC (rev 6993)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxrpc/wsse/store-pass-encrypt-class-cmd/jboss-wsse-server.xml 2008-05-09 20:58:51 UTC (rev 6994)
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<jboss-ws-security xmlns="http://www.jboss.com/ws-security/config" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.jboss.com/ws-security/config http://www.jboss.com/ws-security/schema/jboss-ws-security_1_0.xsd">
<key-store-file>WEB-INF/wsse.keystore</key-store-file>
- <key-store-password>{EXT}@java.home(a)/bin/java -cp @tests.output.dir@/test-classes org.jboss.test.ws.jaxrpc.wsse.PasswordUtil @tests.output.dir(a)/test-resources/jaxrpc/wsse/keystore.password</key-store-password>
+ <key-store-password>{EXT}@java.home(a)/bin/java -cp @tests.output.dir@/test-classes org.jboss.test.ws.jaxrpc.wsse.PasswordUtil @test.resources.directory(a)/jaxrpc/wsse/keystore.password</key-store-password>
<trust-store-file>WEB-INF/wsse.truststore</trust-store-file>
- <trust-store-password>{CLASS}org.jboss.security.plugins.FilePassword:@tests.output.dir@/test-resources/jaxrpc/wsse/keystore.password</trust-store-password>
+ <trust-store-password>{CLASS}org.jboss.security.plugins.FilePassword:@test.resources.directory@/jaxrpc/wsse/keystore.password</trust-store-password>
<config>
<sign type="x509v3" alias="wsse"/>
<encrypt type="x509v3" alias="wsse"/>
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/resources/tools/config/wsdl2javaconfig.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/resources/tools/config/wsdl2javaconfig.xml 2008-05-09 20:27:32 UTC (rev 6993)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/resources/tools/config/wsdl2javaconfig.xml 2008-05-09 20:58:51 UTC (rev 6994)
@@ -1,10 +1,7 @@
<!--This is the config file used by jbossws-->
<configuration>
- <wsdltojava wsdllocation="test-resources/tools/jbws-160/wscompile/simple/wsdl/HelloWsService.wsdl"
- packagename="org.jboss.types"
- seidir="output/somedir"
- servicename="SomeService" >
- <mapping directory="output/someMappingDir"
- filename="jaxrpc-mapping.xml" />
- </wsdltojava>
+ <wsdltojava wsdllocation="@test.resources.directory(a)/tools/jbws-160/wscompile/simple/wsdl/HelloWsService.wsdl" packagename="org.jboss.types"
+ seidir="output/somedir" servicename="SomeService">
+ <mapping directory="output/someMappingDir" filename="jaxrpc-mapping.xml"/>
+ </wsdltojava>
</configuration>
\ No newline at end of file
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/resources/tools/config/xsd2javaconfig.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/resources/tools/config/xsd2javaconfig.xml 2008-05-09 20:27:32 UTC (rev 6993)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/resources/tools/config/xsd2javaconfig.xml 2008-05-09 20:58:51 UTC (rev 6994)
@@ -1,7 +1,4 @@
<!--This is the config file used by jbossws-->
-<configuration>
- <xsdtojava schemafile="test-resources/somedir/somefile.xsd"
- packagename="org.jboss.testtypes"
- javadir="output/somedir"
- createjavadir="true" />
+<configuration>
+ <xsdtojava schemafile="@test.resources.directory(a)/somedir/somefile.xsd" packagename="org.jboss.testtypes" javadir="output/somedir" createjavadir="true"/>
</configuration>
\ No newline at end of file
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/resources/tools/jbws-160/jbossws/simple/simplecaseconfig.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/resources/tools/jbws-160/jbossws/simple/simplecaseconfig.xml 2008-05-09 20:27:32 UTC (rev 6993)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/resources/tools/jbws-160/jbossws/simple/simplecaseconfig.xml 2008-05-09 20:58:51 UTC (rev 6994)
@@ -1,22 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!--This is the config file used by jbossws-->
-<!--
-<configuration>
- <wsdltojava wsdllocation="test-resources/tools/jbws-160/wscompile/simple/wsdl/HelloWsService.wsdl"
- packagename="org.jboss.types"
- seidir="output/resources/tools/jbws-160/jbossws/simple/sei"
- servicename="HelloWsService" >
- <mapping directory="output/resources/tools/jbws-160/jbossws/simple/mapping"
- filename="jaxrpc-mapping.xml" />
- </wsdltojava>
-</configuration>
--->
-
<configuration xmlns="http://www.jboss.org/jbossws-tools"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.jboss.org/jbossws-tools http://www.jboss.org/jbossws-tools/schema/jbossws-tool_1_0.xsd">
- <wsdlToJava wsdlLocation="test-resources/tools/jbws-160/wscompile/simple/wsdl/HelloWsService.wsdl"
+ <wsdlToJava wsdlLocation="@test.resources.directory(a)/tools/jbws-160/wscompile/simple/wsdl/HelloWsService.wsdl"
useJavaAnnotations="false">
<mapping fileName="mapping.xml"/>
</wsdlToJava>
Modified: stack/native/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/pom.xml 2008-05-09 20:27:32 UTC (rev 6993)
+++ stack/native/trunk/modules/testsuite/pom.xml 2008-05-09 20:58:51 UTC (rev 6994)
@@ -18,6 +18,7 @@
<properties>
<surefire.security.args>-Djava.security.manager -Djava.security.policy=src/test/etc/tst.policy</surefire.security.args>
<surefire.jdwp.args>-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005</surefire.jdwp.args>
+ <test.archive.directory>${project.build.directory}/test-libs</test.archive.directory>
<test.resources.directory>${project.build.directory}/test-resources</test.resources.directory>
</properties>
@@ -183,11 +184,11 @@
</property>
<property>
<name>test.archive.directory</name>
- <value>${project.build.directory}/test-libs</value>
+ <value>${test.archive.directory}</value>
</property>
<property>
<name>test.resources.directory</name>
- <value>${project.build.directory}/test-resources</value>
+ <value>${test.resources.directory}</value>
</property>
</systemProperties>
</configuration>
16 years, 8 months
JBossWS SVN: r6993 - in stack/native/trunk/modules/testsuite: framework-tests and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-05-09 16:27:32 -0400 (Fri, 09 May 2008)
New Revision: 6993
Modified:
stack/native/trunk/modules/testsuite/framework-tests/pom.xml
stack/native/trunk/modules/testsuite/native-tests/pom.xml
stack/native/trunk/modules/testsuite/pom.xml
Log:
forkMode=pertest, fix jwpd
Modified: stack/native/trunk/modules/testsuite/framework-tests/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/framework-tests/pom.xml 2008-05-09 14:10:09 UTC (rev 6992)
+++ stack/native/trunk/modules/testsuite/framework-tests/pom.xml 2008-05-09 20:27:32 UTC (rev 6993)
@@ -111,81 +111,6 @@
</build>
</profile>
- <!--
- Name: jboss422
- Descr: JBoss-4.2.2 specific options
- -->
- <profile>
- <id>jboss422</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <!-- http://jira.codehaus.org/browse/MCOMPILER-72 -->
- <testExcludeFile>../test-excludes-jboss422.txt</testExcludeFile>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- <!--
- Name: jboss423
- Descr: JBoss-4.2.3 specific options
- -->
- <profile>
- <id>jboss423</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <!-- http://jira.codehaus.org/browse/MCOMPILER-72 -->
- <testExcludeFile>../test-excludes-jboss423.txt</testExcludeFile>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- <!--
- Name: jboss500
- Descr: JBoss-5.0.0 specific options
- -->
- <profile>
- <id>jboss500</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <!-- http://jira.codehaus.org/browse/MCOMPILER-72 -->
- <testExcludeFile>../test-excludes-jboss500.txt</testExcludeFile>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- <!--
- Name: jboss501
- Descr: JBoss-5.0.1 specific options
- -->
- <profile>
- <id>jboss501</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <!-- http://jira.codehaus.org/browse/MCOMPILER-72 -->
- <testExcludeFile>../test-excludes-jboss501.txt</testExcludeFile>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
</profiles>
</project>
Modified: stack/native/trunk/modules/testsuite/native-tests/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/pom.xml 2008-05-09 14:10:09 UTC (rev 6992)
+++ stack/native/trunk/modules/testsuite/native-tests/pom.xml 2008-05-09 20:27:32 UTC (rev 6993)
@@ -114,81 +114,6 @@
</build>
</profile>
- <!--
- Name: jboss422
- Descr: JBoss-4.2.2 specific options
- -->
- <profile>
- <id>jboss422</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <!-- http://jira.codehaus.org/browse/MCOMPILER-72 -->
- <testExcludeFile>../test-excludes-jboss422.txt</testExcludeFile>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- <!--
- Name: jboss423
- Descr: JBoss-4.2.3 specific options
- -->
- <profile>
- <id>jboss423</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <!-- http://jira.codehaus.org/browse/MCOMPILER-72 -->
- <testExcludeFile>../test-excludes-jboss423.txt</testExcludeFile>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- <!--
- Name: jboss500
- Descr: JBoss-5.0.0 specific options
- -->
- <profile>
- <id>jboss500</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <!-- http://jira.codehaus.org/browse/MCOMPILER-72 -->
- <testExcludeFile>../test-excludes-jboss500.txt</testExcludeFile>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- <!--
- Name: jboss501
- Descr: JBoss-5.0.1 specific options
- -->
- <profile>
- <id>jboss501</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <!-- http://jira.codehaus.org/browse/MCOMPILER-72 -->
- <testExcludeFile>../test-excludes-jboss501.txt</testExcludeFile>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
</profiles>
</project>
Modified: stack/native/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/pom.xml 2008-05-09 14:10:09 UTC (rev 6992)
+++ stack/native/trunk/modules/testsuite/pom.xml 2008-05-09 20:27:32 UTC (rev 6993)
@@ -16,8 +16,9 @@
<!-- Properties -->
<properties>
- <surefire.jvm.args>-Djava.security.manager -Djava.security.policy=src/test/etc/tst.policy</surefire.jvm.args>
- <test.resources.directory>${project.build.directory}/test-resources</test.resources.directory>
+ <surefire.security.args>-Djava.security.manager -Djava.security.policy=src/test/etc/tst.policy</surefire.security.args>
+ <surefire.jdwp.args>-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005</surefire.jdwp.args>
+ <test.resources.directory>${project.build.directory}/test-resources</test.resources.directory>
</properties>
<!-- Modules -->
@@ -130,13 +131,9 @@
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
- <argLine>${surefire.jvm.args}</argLine>
+ <forkMode>pertest</forkMode>
<systemProperties>
<property>
- <name>log4j.output.dir</name>
- <value>${project.build.directory}</value>
- </property>
- <property>
<name>java.naming.provider.url</name>
<value>jnp://${jboss.bind.address}:1099</value>
</property>
@@ -157,14 +154,10 @@
<value>${jbossws.integration.target}</value>
</property>
<property>
- <name>test.archive.directory</name>
- <value>${project.build.directory}/test-libs</value>
+ <name>log4j.output.dir</name>
+ <value>${project.build.directory}</value>
</property>
<property>
- <name>test.resources.directory</name>
- <value>${project.build.directory}/test-resources</value>
- </property>
- <property>
<name>org.jboss.ws.wsse.keyStore</name>
<value>${project.build.directory}/test-resources/jaxws/samples/wssecurity/wsse.keystore</value>
</property>
@@ -188,6 +181,14 @@
<name>org.jboss.ws.wsse.trustStoreType</name>
<value>jks</value>
</property>
+ <property>
+ <name>test.archive.directory</name>
+ <value>${project.build.directory}/test-libs</value>
+ </property>
+ <property>
+ <name>test.resources.directory</name>
+ <value>${project.build.directory}/test-resources</value>
+ </property>
</systemProperties>
</configuration>
</plugin>
@@ -203,17 +204,26 @@
-->
<profile>
<id>debug</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <argLine>-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005</argLine>
- </configuration>
- </plugin>
- </plugins>
- </build>
+ <activation>
+ <property>
+ <name>debug</name>
+ </property>
+ </activation>
+ <properties>
+ <surefire.jvm.args>${surefire.security.args} ${surefire.jdwp.args}</surefire.jvm.args>
+ </properties>
</profile>
+ <profile>
+ <id>no-debug</id>
+ <activation>
+ <property>
+ <name>!debug</name>
+ </property>
+ </activation>
+ <properties>
+ <surefire.jvm.args>${surefire.security.args}</surefire.jvm.args>
+ </properties>
+ </profile>
<!--
Name: hudson
@@ -242,6 +252,7 @@
<properties>
<jboss.version>4.2.2.GA</jboss.version>
<jbossws.integration.target>jboss422</jbossws.integration.target>
+ <java.endorsed.dirs>${jboss422.home}/lib/endorsed</java.endorsed.dirs>
</properties>
<dependencies>
<dependency>
@@ -257,9 +268,16 @@
<build>
<plugins>
<plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <!-- http://jira.codehaus.org/browse/MCOMPILER-72 -->
+ <testExcludeFile>../test-excludes-jboss422.txt</testExcludeFile>
+ </configuration>
+ </plugin>
+ <plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
- <argLine>-Djava.endorsed.dirs=${jboss422.home}/lib/endorsed</argLine>
+ <argLine>${surefire.jvm.args} -Djava.endorsed.dirs=${jboss422.home}/lib/endorsed</argLine>
</configuration>
</plugin>
</plugins>
@@ -290,9 +308,16 @@
<build>
<plugins>
<plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <!-- http://jira.codehaus.org/browse/MCOMPILER-72 -->
+ <testExcludeFile>../test-excludes-jboss423.txt</testExcludeFile>
+ </configuration>
+ </plugin>
+ <plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
- <argLine>-Djava.endorsed.dirs=${jboss423.home}/lib/endorsed</argLine>
+ <argLine>${surefire.jvm.args} -Djava.endorsed.dirs=${jboss423.home}/lib/endorsed</argLine>
</configuration>
</plugin>
</plugins>
@@ -323,9 +348,16 @@
<build>
<plugins>
<plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <!-- http://jira.codehaus.org/browse/MCOMPILER-72 -->
+ <testExcludeFile>../test-excludes-jboss500.txt</testExcludeFile>
+ </configuration>
+ </plugin>
+ <plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
- <argLine>-Djava.endorsed.dirs=${jboss500.home}/lib/endorsed</argLine>
+ <argLine>${surefire.jvm.args} -Djava.endorsed.dirs=${jboss500.home}/lib/endorsed</argLine>
</configuration>
</plugin>
</plugins>
@@ -356,9 +388,16 @@
<build>
<plugins>
<plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <!-- http://jira.codehaus.org/browse/MCOMPILER-72 -->
+ <testExcludeFile>../test-excludes-jboss501.txt</testExcludeFile>
+ </configuration>
+ </plugin>
+ <plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
- <argLine>-Djava.endorsed.dirs=${jboss501.home}/lib/endorsed</argLine>
+ <argLine>${surefire.jvm.args} -Djava.endorsed.dirs=${jboss501.home}/lib/endorsed</argLine>
</configuration>
</plugin>
</plugins>
16 years, 8 months
JBossWS SVN: r6992 - framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-5.0.1.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-05-09 10:10:09 -0400 (Fri, 09 May 2008)
New Revision: 6992
Modified:
framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-5.0.1/config.xml
Log:
fix AS501 deloy
Modified: framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-5.0.1/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-5.0.1/config.xml 2008-05-09 13:50:22 UTC (rev 6991)
+++ framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-5.0.1/config.xml 2008-05-09 14:10:09 UTC (rev 6992)
@@ -26,7 +26,7 @@
cd $STACKNATIVE
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
-ant $ENVIRONMENT deploy-jboss500
+ant $ENVIRONMENT deploy-jboss501
#
# start jbossas
16 years, 8 months