You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by cd...@apache.org on 2005/08/04 10:49:33 UTC

cvs commit: ws-axis/c/tests/auto_build/testcases/server/cpp XSD_NMTOKENPort.cpp XSD_NMTOKENSPort.cpp XSD_nonNegativeInteger.cpp XSD_nonPositiveInteger.cpp XSD_normalizedString.cpp

cdinapala    2005/08/04 01:49:33

  Added:       c/tests/auto_build/testcases/server/cpp XSD_NMTOKENPort.cpp
                        XSD_NMTOKENSPort.cpp XSD_nonNegativeInteger.cpp
                        XSD_nonPositiveInteger.cpp XSD_normalizedString.cpp
  Log:
  Add 5 server codes for new tests. (AXISCPP-766)
  
  Revision  Changes    Path
  1.1                  ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_NMTOKENPort.cpp
  
  Index: XSD_NMTOKENPort.cpp
  ===================================================================
  /*
   * Copyright 2003-2004 The Apache Software Foundation.
  
   *
   * Licensed under the Apache License, Version 2.0 (the "License");
   * you may not use this file except in compliance with the License.
   * You may obtain a copy of the License at
   *
   *		http://www.apache.org/licenses/LICENSE-2.0
   *
   * Unless required by applicable law or agreed to in writing, software
   * distributed under the License is distributed on an "AS IS" BASIS,
   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   * See the License for the specific language governing permissions and
   * limitations under the License.
   *
   * This file was auto-generated by the Axis C++ Web Service Generator (WSDL2Ws)
   * This file contains definitions of the web service
   */
  
  #include "XSD_NMTOKENPort.hpp"
  
  
  XSD_NMTOKENPort::XSD_NMTOKENPort()
  {
  }
  
  XSD_NMTOKENPort::~XSD_NMTOKENPort()
  {
  }
  
  /* This function is called by the AxisEngine when something went wrong
   with the current web service request processing. Appropriate actions should
   be taken here.*/
  void XSD_NMTOKENPort::onFault()
  {
  }
  /* This function is called by the AxisEngine when this web service
   library is first loaded. So here we can initialize any global/static
   data structures of this web service or open database connections */
  void XSD_NMTOKENPort::init()
  {
  }
  /* This function is called by the AxisEngine when this web service
   library is unloaded. So we can deallocate any global/static data structures
   and close database connections etc here. */
  void XSD_NMTOKENPort::fini()
  {
  }
  xsd__NMTOKEN XSD_NMTOKENPort::asNonNillableElement(xsd__NMTOKEN Value0)  
  {
  	return Value0;
  }
  xsd__NMTOKEN XSD_NMTOKENPort::asNillableElement(xsd__NMTOKEN Value0)  
  {
  	return Value0;
  }
  RequiredAttributeElement* XSD_NMTOKENPort::asRequiredAttribute(RequiredAttributeElement* Value0)  
  {
  	return Value0;
  }
  OptionalAttributeElement* XSD_NMTOKENPort::asOptionalAttribute(OptionalAttributeElement* Value0)  
  {
  	return Value0;
  }
  xsd__NMTOKEN_Array XSD_NMTOKENPort::asArray(xsd__NMTOKEN_Array Value0)  
  {
  	return Value0;
  }
  SimpleComplexType* XSD_NMTOKENPort::asComplexType(SimpleComplexType* Value0)  
  {
  	return Value0;
  }
  
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_NMTOKENSPort.cpp
  
  Index: XSD_NMTOKENSPort.cpp
  ===================================================================
  /*
   * Copyright 2003-2004 The Apache Software Foundation.
  
   *
   * Licensed under the Apache License, Version 2.0 (the "License");
   * you may not use this file except in compliance with the License.
   * You may obtain a copy of the License at
   *
   *		http://www.apache.org/licenses/LICENSE-2.0
   *
   * Unless required by applicable law or agreed to in writing, software
   * distributed under the License is distributed on an "AS IS" BASIS,
   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   * See the License for the specific language governing permissions and
   * limitations under the License.
   *
   * This file was auto-generated by the Axis C++ Web Service Generator (WSDL2Ws)
   * This file contains definitions of the web service
   */
  
  #include "XSD_NMTOKENSPort.hpp"
  
  
  XSD_NMTOKENSPort::XSD_NMTOKENSPort()
  {
  }
  
  XSD_NMTOKENSPort::~XSD_NMTOKENSPort()
  {
  }
  
  /* This function is called by the AxisEngine when something went wrong
   with the current web service request processing. Appropriate actions should
   be taken here.*/
  void XSD_NMTOKENSPort::onFault()
  {
  }
  /* This function is called by the AxisEngine when this web service
   library is first loaded. So here we can initialize any global/static
   data structures of this web service or open database connections */
  void XSD_NMTOKENSPort::init()
  {
  }
  /* This function is called by the AxisEngine when this web service
   library is unloaded. So we can deallocate any global/static data structures
   and close database connections etc here. */
  void XSD_NMTOKENSPort::fini()
  {
  }
  xsd__NMTOKENS XSD_NMTOKENSPort::asNonNillableElement(xsd__NMTOKENS Value0)  
  {
  	return Value0;
  }
  xsd__NMTOKENS XSD_NMTOKENSPort::asNillableElement(xsd__NMTOKENS Value0)  
  {
  	return Value0;
  }
  RequiredAttributeElement* XSD_NMTOKENSPort::asRequiredAttribute(RequiredAttributeElement* Value0)  
  {
  	return Value0;
  }
  OptionalAttributeElement* XSD_NMTOKENSPort::asOptionalAttribute(OptionalAttributeElement* Value0)  
  {
  	return Value0;
  }
  xsd__NMTOKENS_Array XSD_NMTOKENSPort::asArray(xsd__NMTOKENS_Array Value0)  
  {
  	return Value0;
  }
  SimpleComplexType* XSD_NMTOKENSPort::asComplexType(SimpleComplexType* Value0)  
  {
  	return Value0;
  }
  
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_nonNegativeInteger.cpp
  
  Index: XSD_nonNegativeInteger.cpp
  ===================================================================
  /*
   * Copyright 2003-2004 The Apache Software Foundation.
  
   *
   * Licensed under the Apache License, Version 2.0 (the "License");
   * you may not use this file except in compliance with the License.
   * You may obtain a copy of the License at
   *
   *		http://www.apache.org/licenses/LICENSE-2.0
   *
   * Unless required by applicable law or agreed to in writing, software
   * distributed under the License is distributed on an "AS IS" BASIS,
   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   * See the License for the specific language governing permissions and
   * limitations under the License.
   *
   * This file was auto-generated by the Axis C++ Web Service Generator (WSDL2Ws)
   * This file contains definitions of the web service
   */
  
  #include "XSD_nonNegativeInteger.hpp"
  
  
  XSD_nonNegativeInteger::XSD_nonNegativeInteger()
  {
  }
  
  XSD_nonNegativeInteger::~XSD_nonNegativeInteger()
  {
  }
  
  /* This function is called by the AxisEngine when something went wrong
   with the current web service request processing. Appropriate actions should
   be taken here.*/
  void XSD_nonNegativeInteger::onFault()
  {
  }
  /* This function is called by the AxisEngine when this web service
   library is first loaded. So here we can initialize any global/static
   data structures of this web service or open database connections */
  void XSD_nonNegativeInteger::init()
  {
  }
  /* This function is called by the AxisEngine when this web service
   library is unloaded. So we can deallocate any global/static data structures
   and close database connections etc here. */
  void XSD_nonNegativeInteger::fini()
  {
  }
  xsd__nonNegativeInteger XSD_nonNegativeInteger::asNonNillableElement(xsd__nonNegativeInteger Value0)  
  {
  	return Value0;
  }
  xsd__nonNegativeInteger * XSD_nonNegativeInteger::asNillableElement(xsd__nonNegativeInteger * Value0)  
  {
  	return Value0;
  }
  RequiredAttributeElement* XSD_nonNegativeInteger::asRequiredAttribute(RequiredAttributeElement* Value0)  
  {
  	return Value0;
  }
  OptionalAttributeElement* XSD_nonNegativeInteger::asOptionalAttribute(OptionalAttributeElement* Value0)  
  {
  	return Value0;
  }
  xsd__nonNegativeInteger_Array XSD_nonNegativeInteger::asArray(xsd__nonNegativeInteger_Array Value0)  
  {
  	return Value0;
  }
  SimpleComplexType* XSD_nonNegativeInteger::asComplexType(SimpleComplexType* Value0)  
  {
  	return Value0;
  }
  
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_nonPositiveInteger.cpp
  
  Index: XSD_nonPositiveInteger.cpp
  ===================================================================
  /*
   * Copyright 2003-2004 The Apache Software Foundation.
  
   *
   * Licensed under the Apache License, Version 2.0 (the "License");
   * you may not use this file except in compliance with the License.
   * You may obtain a copy of the License at
   *
   *		http://www.apache.org/licenses/LICENSE-2.0
   *
   * Unless required by applicable law or agreed to in writing, software
   * distributed under the License is distributed on an "AS IS" BASIS,
   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   * See the License for the specific language governing permissions and
   * limitations under the License.
   *
   * This file was auto-generated by the Axis C++ Web Service Generator (WSDL2Ws)
   * This file contains definitions of the web service
   */
  
  #include "XSD_nonPositiveInteger.hpp"
  
  
  XSD_nonPositiveInteger::XSD_nonPositiveInteger()
  {
  }
  
  XSD_nonPositiveInteger::~XSD_nonPositiveInteger()
  {
  }
  
  /* This function is called by the AxisEngine when something went wrong
   with the current web service request processing. Appropriate actions should
   be taken here.*/
  void XSD_nonPositiveInteger::onFault()
  {
  }
  /* This function is called by the AxisEngine when this web service
   library is first loaded. So here we can initialize any global/static
   data structures of this web service or open database connections */
  void XSD_nonPositiveInteger::init()
  {
  }
  /* This function is called by the AxisEngine when this web service
   library is unloaded. So we can deallocate any global/static data structures
   and close database connections etc here. */
  void XSD_nonPositiveInteger::fini()
  {
  }
  xsd__nonPositiveInteger XSD_nonPositiveInteger::asNonNillableElement(xsd__nonPositiveInteger Value0)  
  {
  	return Value0;
  }
  xsd__nonPositiveInteger * XSD_nonPositiveInteger::asNillableElement(xsd__nonPositiveInteger * Value0)  
  {
  	return Value0;
  }
  RequiredAttributeElement* XSD_nonPositiveInteger::asRequiredAttribute(RequiredAttributeElement* Value0)  
  {
  	return Value0;
  }
  OptionalAttributeElement* XSD_nonPositiveInteger::asOptionalAttribute(OptionalAttributeElement* Value0)  
  {
  	return Value0;
  }
  xsd__nonPositiveInteger_Array XSD_nonPositiveInteger::asArray(xsd__nonPositiveInteger_Array Value0)  
  {
  	return Value0;
  }
  SimpleComplexType* XSD_nonPositiveInteger::asComplexType(SimpleComplexType* Value0)  
  {
  	return Value0;
  }
  
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_normalizedString.cpp
  
  Index: XSD_normalizedString.cpp
  ===================================================================
  /*
   * Copyright 2003-2004 The Apache Software Foundation.
  
   *
   * Licensed under the Apache License, Version 2.0 (the "License");
   * you may not use this file except in compliance with the License.
   * You may obtain a copy of the License at
   *
   *		http://www.apache.org/licenses/LICENSE-2.0
   *
   * Unless required by applicable law or agreed to in writing, software
   * distributed under the License is distributed on an "AS IS" BASIS,
   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   * See the License for the specific language governing permissions and
   * limitations under the License.
   *
   * This file was auto-generated by the Axis C++ Web Service Generator (WSDL2Ws)
   * This file contains definitions of the web service
   */
  
  #include "XSD_normalizedString.hpp"
  
  
  XSD_normalizedString::XSD_normalizedString()
  {
  }
  
  XSD_normalizedString::~XSD_normalizedString()
  {
  }
  
  /* This function is called by the AxisEngine when something went wrong
   with the current web service request processing. Appropriate actions should
   be taken here.*/
  void XSD_normalizedString::onFault()
  {
  }
  /* This function is called by the AxisEngine when this web service
   library is first loaded. So here we can initialize any global/static
   data structures of this web service or open database connections */
  void XSD_normalizedString::init()
  {
  }
  /* This function is called by the AxisEngine when this web service
   library is unloaded. So we can deallocate any global/static data structures
   and close database connections etc here. */
  void XSD_normalizedString::fini()
  {
  }
  xsd__normalizedString XSD_normalizedString::asNonNillableElement(xsd__normalizedString Value0)  
  {
  	return Value0;
  }
  xsd__normalizedString XSD_normalizedString::asNillableElement(xsd__normalizedString Value0)  
  {
  	return Value0;
  }
  RequiredAttributeElement* XSD_normalizedString::asRequiredAttribute(RequiredAttributeElement* Value0)  
  {
  	return Value0;
  }
  OptionalAttributeElement* XSD_normalizedString::asOptionalAttribute(OptionalAttributeElement* Value0)  
  {
  	return Value0;
  }
  xsd__normalizedString_Array XSD_normalizedString::asArray(xsd__normalizedString_Array Value0)  
  {
  	return Value0;
  }
  SimpleComplexType* XSD_normalizedString::asComplexType(SimpleComplexType* Value0)  
  {
  	return Value0;
  }