You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2007/02/21 19:49:46 UTC

svn commit: r510143 [4/5] - in /incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl: ./ src/main/java/bigbank/ src/main/java/bigbank/account/ src/main/java/bigbank/account/services/ src/main/java/bigbank/account/services/accountdata/...

Added: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/depositImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/depositImpl.java?view=auto&rev=510143
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/depositImpl.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/depositImpl.java Wed Feb 21 10:49:44 2007
@@ -0,0 +1,248 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package com.bigbank.account.impl;
+
+import com.bigbank.account.AccountFactory;
+import com.bigbank.account.deposit;
+
+import commonj.sdo.Type;
+
+import org.apache.tuscany.sdo.impl.DataObjectBase;
+
+/**
+ * <!-- begin-user-doc -->
+ * An implementation of the model object '<em><b>deposit</b></em>'.
+ * <!-- end-user-doc -->
+ * <p>
+ * The following features are implemented:
+ * <ul>
+ *   <li>{@link com.bigbank.account.impl.depositImpl#getAccountNumber <em>Account Number</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.depositImpl#getAmount <em>Amount</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @generated
+ */
+public class depositImpl extends DataObjectBase implements deposit
+{
+  /**
+   * The feature id for the '<em><b>Account Number</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int ACCOUNT_NUMBER = 0;
+
+  /**
+   * The feature id for the '<em><b>Amount</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int AMOUNT = 1;
+
+  /**
+   * This represents the number of properties for this type.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */
+  
+  public final static int SDO_PROPERTY_COUNT = 2;
+
+  /**
+   * The default value of the '{@link #getAccountNumber() <em>Account Number</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getAccountNumber()
+   * @generated
+   * @ordered
+   */
+  protected static final String ACCOUNT_NUMBER_DEFAULT_ = null;
+
+  /**
+   * The cached value of the '{@link #getAccountNumber() <em>Account Number</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getAccountNumber()
+   * @generated
+   * @ordered
+   */
+  protected String accountNumber = ACCOUNT_NUMBER_DEFAULT_;
+
+  /**
+   * The default value of the '{@link #getAmount() <em>Amount</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getAmount()
+   * @generated
+   * @ordered
+   */
+  protected static final float AMOUNT_DEFAULT_ = 0.0F;
+
+  /**
+   * The cached value of the '{@link #getAmount() <em>Amount</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getAmount()
+   * @generated
+   * @ordered
+   */
+  protected float amount = AMOUNT_DEFAULT_;
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public depositImpl()
+  {
+    super();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Type getType()
+  {
+    return ((AccountFactoryImpl)AccountFactory.INSTANCE).getdeposit();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public String getAccountNumber()
+  {
+    return accountNumber;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setAccountNumber(String newAccountNumber)
+  {
+    accountNumber = newAccountNumber;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public float getAmount()
+  {
+    return amount;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setAmount(float newAmount)
+  {
+    amount = newAmount;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Object get(int propertyIndex, boolean resolve)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_NUMBER:
+        return getAccountNumber();
+      case AMOUNT:
+        return new Float(getAmount());
+    }
+    return super.get(propertyIndex, resolve);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void set(int propertyIndex, Object newValue)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_NUMBER:
+        setAccountNumber((String)newValue);
+        return;
+      case AMOUNT:
+        setAmount(((Float)newValue).floatValue());
+        return;
+    }
+    super.set(propertyIndex, newValue);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void unset(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_NUMBER:
+        setAccountNumber(ACCOUNT_NUMBER_DEFAULT_);
+        return;
+      case AMOUNT:
+        setAmount(AMOUNT_DEFAULT_);
+        return;
+    }
+    super.unset(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public boolean isSet(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_NUMBER:
+        return ACCOUNT_NUMBER_DEFAULT_ == null ? accountNumber != null : !ACCOUNT_NUMBER_DEFAULT_.equals(accountNumber);
+      case AMOUNT:
+        return amount != AMOUNT_DEFAULT_;
+    }
+    return super.isSet(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public String toString()
+  {
+    if (isProxy(this)) return super.toString();
+
+    StringBuffer result = new StringBuffer(super.toString());
+    result.append(" (accountNumber: ");
+    result.append(accountNumber);
+    result.append(", amount: ");
+    result.append(amount);
+    result.append(')');
+    return result.toString();
+  }
+
+} //depositImpl

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/depositImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/depositImpl.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/depositResponseImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/depositResponseImpl.java?view=auto&rev=510143
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/depositResponseImpl.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/depositResponseImpl.java Wed Feb 21 10:49:44 2007
@@ -0,0 +1,187 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package com.bigbank.account.impl;
+
+import com.bigbank.account.AccountFactory;
+import com.bigbank.account.depositResponse;
+
+import commonj.sdo.Type;
+
+import org.apache.tuscany.sdo.impl.DataObjectBase;
+
+/**
+ * <!-- begin-user-doc -->
+ * An implementation of the model object '<em><b>deposit Response</b></em>'.
+ * <!-- end-user-doc -->
+ * <p>
+ * The following features are implemented:
+ * <ul>
+ *   <li>{@link com.bigbank.account.impl.depositResponseImpl#getBalance <em>Balance</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @generated
+ */
+public class depositResponseImpl extends DataObjectBase implements depositResponse
+{
+  /**
+   * The feature id for the '<em><b>Balance</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int BALANCE = 0;
+
+  /**
+   * This represents the number of properties for this type.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */
+  
+  public final static int SDO_PROPERTY_COUNT = 1;
+
+  /**
+   * The default value of the '{@link #getBalance() <em>Balance</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getBalance()
+   * @generated
+   * @ordered
+   */
+  protected static final float BALANCE_DEFAULT_ = 0.0F;
+
+  /**
+   * The cached value of the '{@link #getBalance() <em>Balance</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getBalance()
+   * @generated
+   * @ordered
+   */
+  protected float balance = BALANCE_DEFAULT_;
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public depositResponseImpl()
+  {
+    super();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Type getType()
+  {
+    return ((AccountFactoryImpl)AccountFactory.INSTANCE).getdepositResponse();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public float getBalance()
+  {
+    return balance;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setBalance(float newBalance)
+  {
+    balance = newBalance;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Object get(int propertyIndex, boolean resolve)
+  {
+    switch (propertyIndex)
+    {
+      case BALANCE:
+        return new Float(getBalance());
+    }
+    return super.get(propertyIndex, resolve);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void set(int propertyIndex, Object newValue)
+  {
+    switch (propertyIndex)
+    {
+      case BALANCE:
+        setBalance(((Float)newValue).floatValue());
+        return;
+    }
+    super.set(propertyIndex, newValue);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void unset(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case BALANCE:
+        setBalance(BALANCE_DEFAULT_);
+        return;
+    }
+    super.unset(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public boolean isSet(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case BALANCE:
+        return balance != BALANCE_DEFAULT_;
+    }
+    return super.isSet(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public String toString()
+  {
+    if (isProxy(this)) return super.toString();
+
+    StringBuffer result = new StringBuffer(super.toString());
+    result.append(" (balance: ");
+    result.append(balance);
+    result.append(')');
+    return result.toString();
+  }
+
+} //depositResponseImpl

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/depositResponseImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/depositResponseImpl.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getAccountLogImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getAccountLogImpl.java?view=auto&rev=510143
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getAccountLogImpl.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getAccountLogImpl.java Wed Feb 21 10:49:44 2007
@@ -0,0 +1,187 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package com.bigbank.account.impl;
+
+import com.bigbank.account.AccountFactory;
+import com.bigbank.account.getAccountLog;
+
+import commonj.sdo.Type;
+
+import org.apache.tuscany.sdo.impl.DataObjectBase;
+
+/**
+ * <!-- begin-user-doc -->
+ * An implementation of the model object '<em><b>get Account Log</b></em>'.
+ * <!-- end-user-doc -->
+ * <p>
+ * The following features are implemented:
+ * <ul>
+ *   <li>{@link com.bigbank.account.impl.getAccountLogImpl#getCustomerID <em>Customer ID</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @generated
+ */
+public class getAccountLogImpl extends DataObjectBase implements getAccountLog
+{
+  /**
+   * The feature id for the '<em><b>Customer ID</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int CUSTOMER_ID = 0;
+
+  /**
+   * This represents the number of properties for this type.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */
+  
+  public final static int SDO_PROPERTY_COUNT = 1;
+
+  /**
+   * The default value of the '{@link #getCustomerID() <em>Customer ID</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getCustomerID()
+   * @generated
+   * @ordered
+   */
+  protected static final int CUSTOMER_ID_DEFAULT_ = 0;
+
+  /**
+   * The cached value of the '{@link #getCustomerID() <em>Customer ID</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getCustomerID()
+   * @generated
+   * @ordered
+   */
+  protected int customerID = CUSTOMER_ID_DEFAULT_;
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public getAccountLogImpl()
+  {
+    super();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Type getType()
+  {
+    return ((AccountFactoryImpl)AccountFactory.INSTANCE).getgetAccountLog();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public int getCustomerID()
+  {
+    return customerID;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setCustomerID(int newCustomerID)
+  {
+    customerID = newCustomerID;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Object get(int propertyIndex, boolean resolve)
+  {
+    switch (propertyIndex)
+    {
+      case CUSTOMER_ID:
+        return new Integer(getCustomerID());
+    }
+    return super.get(propertyIndex, resolve);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void set(int propertyIndex, Object newValue)
+  {
+    switch (propertyIndex)
+    {
+      case CUSTOMER_ID:
+        setCustomerID(((Integer)newValue).intValue());
+        return;
+    }
+    super.set(propertyIndex, newValue);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void unset(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case CUSTOMER_ID:
+        setCustomerID(CUSTOMER_ID_DEFAULT_);
+        return;
+    }
+    super.unset(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public boolean isSet(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case CUSTOMER_ID:
+        return customerID != CUSTOMER_ID_DEFAULT_;
+    }
+    return super.isSet(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public String toString()
+  {
+    if (isProxy(this)) return super.toString();
+
+    StringBuffer result = new StringBuffer(super.toString());
+    result.append(" (customerID: ");
+    result.append(customerID);
+    result.append(')');
+    return result.toString();
+  }
+
+} //getAccountLogImpl

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getAccountLogImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getAccountLogImpl.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getAccountLogResponseImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getAccountLogResponseImpl.java?view=auto&rev=510143
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getAccountLogResponseImpl.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getAccountLogResponseImpl.java Wed Feb 21 10:49:44 2007
@@ -0,0 +1,199 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package com.bigbank.account.impl;
+
+import com.bigbank.account.AccountFactory;
+import com.bigbank.account.AccountLog;
+import com.bigbank.account.getAccountLogResponse;
+
+import commonj.sdo.Type;
+
+import org.apache.tuscany.sdo.impl.DataObjectBase;
+
+/**
+ * <!-- begin-user-doc -->
+ * An implementation of the model object '<em><b>get Account Log Response</b></em>'.
+ * <!-- end-user-doc -->
+ * <p>
+ * The following features are implemented:
+ * <ul>
+ *   <li>{@link com.bigbank.account.impl.getAccountLogResponseImpl#getAccountLog <em>Account Log</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @generated
+ */
+public class getAccountLogResponseImpl extends DataObjectBase implements getAccountLogResponse
+{
+  /**
+   * The feature id for the '<em><b>Account Log</b></em>' containment reference.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int ACCOUNT_LOG = 0;
+
+  /**
+   * This represents the number of properties for this type.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */
+  
+  public final static int SDO_PROPERTY_COUNT = 1;
+
+  /**
+   * The cached value of the '{@link #getAccountLog() <em>Account Log</em>}' containment reference.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getAccountLog()
+   * @generated
+   * @ordered
+   */
+  
+  protected AccountLog accountLog = null;
+  
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public getAccountLogResponseImpl()
+  {
+    super();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Type getType()
+  {
+    return ((AccountFactoryImpl)AccountFactory.INSTANCE).getgetAccountLogResponse();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public AccountLog getAccountLog()
+  {
+    return accountLog;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public ChangeContext basicSetAccountLog(AccountLog newAccountLog, ChangeContext changeContext)
+  {
+    AccountLog oldAccountLog = accountLog;
+    accountLog = newAccountLog;
+    return changeContext;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setAccountLog(AccountLog newAccountLog)
+  {
+    if (newAccountLog != accountLog)
+    {
+      ChangeContext changeContext = null;
+      if (accountLog != null)
+        changeContext = inverseRemove(accountLog, this, OPPOSITE_FEATURE_BASE - ACCOUNT_LOG, null, changeContext);
+      if (newAccountLog != null)
+        changeContext = inverseAdd(newAccountLog, this, OPPOSITE_FEATURE_BASE - ACCOUNT_LOG, null, changeContext);
+      changeContext = basicSetAccountLog(newAccountLog, changeContext);
+      if (changeContext != null) dispatch(changeContext);
+    }
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public ChangeContext inverseRemove(Object otherEnd, int propertyIndex, ChangeContext changeContext)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_LOG:
+        return basicSetAccountLog(null, changeContext);
+    }
+    return super.inverseRemove(otherEnd, propertyIndex, changeContext);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Object get(int propertyIndex, boolean resolve)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_LOG:
+        return getAccountLog();
+    }
+    return super.get(propertyIndex, resolve);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void set(int propertyIndex, Object newValue)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_LOG:
+        setAccountLog((AccountLog)newValue);
+        return;
+    }
+    super.set(propertyIndex, newValue);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void unset(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_LOG:
+        setAccountLog((AccountLog)null);
+        return;
+    }
+    super.unset(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public boolean isSet(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_LOG:
+        return accountLog != null;
+    }
+    return super.isSet(propertyIndex);
+  }
+
+} //getAccountLogResponseImpl

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getAccountLogResponseImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getAccountLogResponseImpl.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getAccountReportImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getAccountReportImpl.java?view=auto&rev=510143
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getAccountReportImpl.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getAccountReportImpl.java Wed Feb 21 10:49:44 2007
@@ -0,0 +1,187 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package com.bigbank.account.impl;
+
+import com.bigbank.account.AccountFactory;
+import com.bigbank.account.getAccountReport;
+
+import commonj.sdo.Type;
+
+import org.apache.tuscany.sdo.impl.DataObjectBase;
+
+/**
+ * <!-- begin-user-doc -->
+ * An implementation of the model object '<em><b>get Account Report</b></em>'.
+ * <!-- end-user-doc -->
+ * <p>
+ * The following features are implemented:
+ * <ul>
+ *   <li>{@link com.bigbank.account.impl.getAccountReportImpl#getCustomerID <em>Customer ID</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @generated
+ */
+public class getAccountReportImpl extends DataObjectBase implements getAccountReport
+{
+  /**
+   * The feature id for the '<em><b>Customer ID</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int CUSTOMER_ID = 0;
+
+  /**
+   * This represents the number of properties for this type.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */
+  
+  public final static int SDO_PROPERTY_COUNT = 1;
+
+  /**
+   * The default value of the '{@link #getCustomerID() <em>Customer ID</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getCustomerID()
+   * @generated
+   * @ordered
+   */
+  protected static final int CUSTOMER_ID_DEFAULT_ = 0;
+
+  /**
+   * The cached value of the '{@link #getCustomerID() <em>Customer ID</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getCustomerID()
+   * @generated
+   * @ordered
+   */
+  protected int customerID = CUSTOMER_ID_DEFAULT_;
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public getAccountReportImpl()
+  {
+    super();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Type getType()
+  {
+    return ((AccountFactoryImpl)AccountFactory.INSTANCE).getgetAccountReport();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public int getCustomerID()
+  {
+    return customerID;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setCustomerID(int newCustomerID)
+  {
+    customerID = newCustomerID;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Object get(int propertyIndex, boolean resolve)
+  {
+    switch (propertyIndex)
+    {
+      case CUSTOMER_ID:
+        return new Integer(getCustomerID());
+    }
+    return super.get(propertyIndex, resolve);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void set(int propertyIndex, Object newValue)
+  {
+    switch (propertyIndex)
+    {
+      case CUSTOMER_ID:
+        setCustomerID(((Integer)newValue).intValue());
+        return;
+    }
+    super.set(propertyIndex, newValue);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void unset(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case CUSTOMER_ID:
+        setCustomerID(CUSTOMER_ID_DEFAULT_);
+        return;
+    }
+    super.unset(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public boolean isSet(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case CUSTOMER_ID:
+        return customerID != CUSTOMER_ID_DEFAULT_;
+    }
+    return super.isSet(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public String toString()
+  {
+    if (isProxy(this)) return super.toString();
+
+    StringBuffer result = new StringBuffer(super.toString());
+    result.append(" (customerID: ");
+    result.append(customerID);
+    result.append(')');
+    return result.toString();
+  }
+
+} //getAccountReportImpl

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getAccountReportImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getAccountReportImpl.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getAccountReportResponseImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getAccountReportResponseImpl.java?view=auto&rev=510143
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getAccountReportResponseImpl.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getAccountReportResponseImpl.java Wed Feb 21 10:49:44 2007
@@ -0,0 +1,199 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package com.bigbank.account.impl;
+
+import com.bigbank.account.AccountFactory;
+import com.bigbank.account.AccountReport;
+import com.bigbank.account.getAccountReportResponse;
+
+import commonj.sdo.Type;
+
+import org.apache.tuscany.sdo.impl.DataObjectBase;
+
+/**
+ * <!-- begin-user-doc -->
+ * An implementation of the model object '<em><b>get Account Report Response</b></em>'.
+ * <!-- end-user-doc -->
+ * <p>
+ * The following features are implemented:
+ * <ul>
+ *   <li>{@link com.bigbank.account.impl.getAccountReportResponseImpl#getAccountReport <em>Account Report</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @generated
+ */
+public class getAccountReportResponseImpl extends DataObjectBase implements getAccountReportResponse
+{
+  /**
+   * The feature id for the '<em><b>Account Report</b></em>' containment reference.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int ACCOUNT_REPORT = 0;
+
+  /**
+   * This represents the number of properties for this type.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */
+  
+  public final static int SDO_PROPERTY_COUNT = 1;
+
+  /**
+   * The cached value of the '{@link #getAccountReport() <em>Account Report</em>}' containment reference.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getAccountReport()
+   * @generated
+   * @ordered
+   */
+  
+  protected AccountReport accountReport = null;
+  
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public getAccountReportResponseImpl()
+  {
+    super();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Type getType()
+  {
+    return ((AccountFactoryImpl)AccountFactory.INSTANCE).getgetAccountReportResponse();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public AccountReport getAccountReport()
+  {
+    return accountReport;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public ChangeContext basicSetAccountReport(AccountReport newAccountReport, ChangeContext changeContext)
+  {
+    AccountReport oldAccountReport = accountReport;
+    accountReport = newAccountReport;
+    return changeContext;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setAccountReport(AccountReport newAccountReport)
+  {
+    if (newAccountReport != accountReport)
+    {
+      ChangeContext changeContext = null;
+      if (accountReport != null)
+        changeContext = inverseRemove(accountReport, this, OPPOSITE_FEATURE_BASE - ACCOUNT_REPORT, null, changeContext);
+      if (newAccountReport != null)
+        changeContext = inverseAdd(newAccountReport, this, OPPOSITE_FEATURE_BASE - ACCOUNT_REPORT, null, changeContext);
+      changeContext = basicSetAccountReport(newAccountReport, changeContext);
+      if (changeContext != null) dispatch(changeContext);
+    }
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public ChangeContext inverseRemove(Object otherEnd, int propertyIndex, ChangeContext changeContext)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_REPORT:
+        return basicSetAccountReport(null, changeContext);
+    }
+    return super.inverseRemove(otherEnd, propertyIndex, changeContext);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Object get(int propertyIndex, boolean resolve)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_REPORT:
+        return getAccountReport();
+    }
+    return super.get(propertyIndex, resolve);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void set(int propertyIndex, Object newValue)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_REPORT:
+        setAccountReport((AccountReport)newValue);
+        return;
+    }
+    super.set(propertyIndex, newValue);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void unset(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_REPORT:
+        setAccountReport((AccountReport)null);
+        return;
+    }
+    super.unset(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public boolean isSet(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_REPORT:
+        return accountReport != null;
+    }
+    return super.isSet(propertyIndex);
+  }
+
+} //getAccountReportResponseImpl

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getAccountReportResponseImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getAccountReportResponseImpl.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getCustomerProfileImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getCustomerProfileImpl.java?view=auto&rev=510143
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getCustomerProfileImpl.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getCustomerProfileImpl.java Wed Feb 21 10:49:44 2007
@@ -0,0 +1,187 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package com.bigbank.account.impl;
+
+import com.bigbank.account.AccountFactory;
+import com.bigbank.account.getCustomerProfile;
+
+import commonj.sdo.Type;
+
+import org.apache.tuscany.sdo.impl.DataObjectBase;
+
+/**
+ * <!-- begin-user-doc -->
+ * An implementation of the model object '<em><b>get Customer Profile</b></em>'.
+ * <!-- end-user-doc -->
+ * <p>
+ * The following features are implemented:
+ * <ul>
+ *   <li>{@link com.bigbank.account.impl.getCustomerProfileImpl#getLoginID <em>Login ID</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @generated
+ */
+public class getCustomerProfileImpl extends DataObjectBase implements getCustomerProfile
+{
+  /**
+   * The feature id for the '<em><b>Login ID</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int LOGIN_ID = 0;
+
+  /**
+   * This represents the number of properties for this type.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */
+  
+  public final static int SDO_PROPERTY_COUNT = 1;
+
+  /**
+   * The default value of the '{@link #getLoginID() <em>Login ID</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getLoginID()
+   * @generated
+   * @ordered
+   */
+  protected static final String LOGIN_ID_DEFAULT_ = null;
+
+  /**
+   * The cached value of the '{@link #getLoginID() <em>Login ID</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getLoginID()
+   * @generated
+   * @ordered
+   */
+  protected String loginID = LOGIN_ID_DEFAULT_;
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public getCustomerProfileImpl()
+  {
+    super();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Type getType()
+  {
+    return ((AccountFactoryImpl)AccountFactory.INSTANCE).getgetCustomerProfile();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public String getLoginID()
+  {
+    return loginID;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setLoginID(String newLoginID)
+  {
+    loginID = newLoginID;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Object get(int propertyIndex, boolean resolve)
+  {
+    switch (propertyIndex)
+    {
+      case LOGIN_ID:
+        return getLoginID();
+    }
+    return super.get(propertyIndex, resolve);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void set(int propertyIndex, Object newValue)
+  {
+    switch (propertyIndex)
+    {
+      case LOGIN_ID:
+        setLoginID((String)newValue);
+        return;
+    }
+    super.set(propertyIndex, newValue);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void unset(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case LOGIN_ID:
+        setLoginID(LOGIN_ID_DEFAULT_);
+        return;
+    }
+    super.unset(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public boolean isSet(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case LOGIN_ID:
+        return LOGIN_ID_DEFAULT_ == null ? loginID != null : !LOGIN_ID_DEFAULT_.equals(loginID);
+    }
+    return super.isSet(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public String toString()
+  {
+    if (isProxy(this)) return super.toString();
+
+    StringBuffer result = new StringBuffer(super.toString());
+    result.append(" (loginID: ");
+    result.append(loginID);
+    result.append(')');
+    return result.toString();
+  }
+
+} //getCustomerProfileImpl

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getCustomerProfileImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getCustomerProfileImpl.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getCustomerProfileResponseImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getCustomerProfileResponseImpl.java?view=auto&rev=510143
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getCustomerProfileResponseImpl.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getCustomerProfileResponseImpl.java Wed Feb 21 10:49:44 2007
@@ -0,0 +1,199 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package com.bigbank.account.impl;
+
+import com.bigbank.account.AccountFactory;
+import com.bigbank.account.CustomerProfileData;
+import com.bigbank.account.getCustomerProfileResponse;
+
+import commonj.sdo.Type;
+
+import org.apache.tuscany.sdo.impl.DataObjectBase;
+
+/**
+ * <!-- begin-user-doc -->
+ * An implementation of the model object '<em><b>get Customer Profile Response</b></em>'.
+ * <!-- end-user-doc -->
+ * <p>
+ * The following features are implemented:
+ * <ul>
+ *   <li>{@link com.bigbank.account.impl.getCustomerProfileResponseImpl#getCustomerProfile <em>Customer Profile</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @generated
+ */
+public class getCustomerProfileResponseImpl extends DataObjectBase implements getCustomerProfileResponse
+{
+  /**
+   * The feature id for the '<em><b>Customer Profile</b></em>' containment reference.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int CUSTOMER_PROFILE = 0;
+
+  /**
+   * This represents the number of properties for this type.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */
+  
+  public final static int SDO_PROPERTY_COUNT = 1;
+
+  /**
+   * The cached value of the '{@link #getCustomerProfile() <em>Customer Profile</em>}' containment reference.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getCustomerProfile()
+   * @generated
+   * @ordered
+   */
+  
+  protected CustomerProfileData customerProfile = null;
+  
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public getCustomerProfileResponseImpl()
+  {
+    super();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Type getType()
+  {
+    return ((AccountFactoryImpl)AccountFactory.INSTANCE).getgetCustomerProfileResponse();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public CustomerProfileData getCustomerProfile()
+  {
+    return customerProfile;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public ChangeContext basicSetCustomerProfile(CustomerProfileData newCustomerProfile, ChangeContext changeContext)
+  {
+    CustomerProfileData oldCustomerProfile = customerProfile;
+    customerProfile = newCustomerProfile;
+    return changeContext;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setCustomerProfile(CustomerProfileData newCustomerProfile)
+  {
+    if (newCustomerProfile != customerProfile)
+    {
+      ChangeContext changeContext = null;
+      if (customerProfile != null)
+        changeContext = inverseRemove(customerProfile, this, OPPOSITE_FEATURE_BASE - CUSTOMER_PROFILE, null, changeContext);
+      if (newCustomerProfile != null)
+        changeContext = inverseAdd(newCustomerProfile, this, OPPOSITE_FEATURE_BASE - CUSTOMER_PROFILE, null, changeContext);
+      changeContext = basicSetCustomerProfile(newCustomerProfile, changeContext);
+      if (changeContext != null) dispatch(changeContext);
+    }
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public ChangeContext inverseRemove(Object otherEnd, int propertyIndex, ChangeContext changeContext)
+  {
+    switch (propertyIndex)
+    {
+      case CUSTOMER_PROFILE:
+        return basicSetCustomerProfile(null, changeContext);
+    }
+    return super.inverseRemove(otherEnd, propertyIndex, changeContext);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Object get(int propertyIndex, boolean resolve)
+  {
+    switch (propertyIndex)
+    {
+      case CUSTOMER_PROFILE:
+        return getCustomerProfile();
+    }
+    return super.get(propertyIndex, resolve);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void set(int propertyIndex, Object newValue)
+  {
+    switch (propertyIndex)
+    {
+      case CUSTOMER_PROFILE:
+        setCustomerProfile((CustomerProfileData)newValue);
+        return;
+    }
+    super.set(propertyIndex, newValue);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void unset(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case CUSTOMER_PROFILE:
+        setCustomerProfile((CustomerProfileData)null);
+        return;
+    }
+    super.unset(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public boolean isSet(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case CUSTOMER_PROFILE:
+        return customerProfile != null;
+    }
+    return super.isSet(propertyIndex);
+  }
+
+} //getCustomerProfileResponseImpl

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getCustomerProfileResponseImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/getCustomerProfileResponseImpl.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/purchaseStockImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/purchaseStockImpl.java?view=auto&rev=510143
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/purchaseStockImpl.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/purchaseStockImpl.java Wed Feb 21 10:49:44 2007
@@ -0,0 +1,274 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package com.bigbank.account.impl;
+
+import com.bigbank.account.AccountFactory;
+import com.bigbank.account.StockSummary;
+import com.bigbank.account.purchaseStock;
+
+import commonj.sdo.Type;
+
+import org.apache.tuscany.sdo.impl.DataObjectBase;
+
+/**
+ * <!-- begin-user-doc -->
+ * An implementation of the model object '<em><b>purchase Stock</b></em>'.
+ * <!-- end-user-doc -->
+ * <p>
+ * The following features are implemented:
+ * <ul>
+ *   <li>{@link com.bigbank.account.impl.purchaseStockImpl#getId <em>Id</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.purchaseStockImpl#getStock <em>Stock</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @generated
+ */
+public class purchaseStockImpl extends DataObjectBase implements purchaseStock
+{
+  /**
+   * The feature id for the '<em><b>Id</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int ID = 0;
+
+  /**
+   * The feature id for the '<em><b>Stock</b></em>' containment reference.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int STOCK = 1;
+
+  /**
+   * This represents the number of properties for this type.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */
+  
+  public final static int SDO_PROPERTY_COUNT = 2;
+
+  /**
+   * The default value of the '{@link #getId() <em>Id</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getId()
+   * @generated
+   * @ordered
+   */
+  protected static final int ID_DEFAULT_ = 0;
+
+  /**
+   * The cached value of the '{@link #getId() <em>Id</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getId()
+   * @generated
+   * @ordered
+   */
+  protected int id = ID_DEFAULT_;
+
+  /**
+   * The cached value of the '{@link #getStock() <em>Stock</em>}' containment reference.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getStock()
+   * @generated
+   * @ordered
+   */
+  
+  protected StockSummary stock = null;
+  
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public purchaseStockImpl()
+  {
+    super();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Type getType()
+  {
+    return ((AccountFactoryImpl)AccountFactory.INSTANCE).getpurchaseStock();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public int getId()
+  {
+    return id;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setId(int newId)
+  {
+    id = newId;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public StockSummary getStock()
+  {
+    return stock;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public ChangeContext basicSetStock(StockSummary newStock, ChangeContext changeContext)
+  {
+    StockSummary oldStock = stock;
+    stock = newStock;
+    return changeContext;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setStock(StockSummary newStock)
+  {
+    if (newStock != stock)
+    {
+      ChangeContext changeContext = null;
+      if (stock != null)
+        changeContext = inverseRemove(stock, this, OPPOSITE_FEATURE_BASE - STOCK, null, changeContext);
+      if (newStock != null)
+        changeContext = inverseAdd(newStock, this, OPPOSITE_FEATURE_BASE - STOCK, null, changeContext);
+      changeContext = basicSetStock(newStock, changeContext);
+      if (changeContext != null) dispatch(changeContext);
+    }
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public ChangeContext inverseRemove(Object otherEnd, int propertyIndex, ChangeContext changeContext)
+  {
+    switch (propertyIndex)
+    {
+      case STOCK:
+        return basicSetStock(null, changeContext);
+    }
+    return super.inverseRemove(otherEnd, propertyIndex, changeContext);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Object get(int propertyIndex, boolean resolve)
+  {
+    switch (propertyIndex)
+    {
+      case ID:
+        return new Integer(getId());
+      case STOCK:
+        return getStock();
+    }
+    return super.get(propertyIndex, resolve);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void set(int propertyIndex, Object newValue)
+  {
+    switch (propertyIndex)
+    {
+      case ID:
+        setId(((Integer)newValue).intValue());
+        return;
+      case STOCK:
+        setStock((StockSummary)newValue);
+        return;
+    }
+    super.set(propertyIndex, newValue);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void unset(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case ID:
+        setId(ID_DEFAULT_);
+        return;
+      case STOCK:
+        setStock((StockSummary)null);
+        return;
+    }
+    super.unset(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public boolean isSet(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case ID:
+        return id != ID_DEFAULT_;
+      case STOCK:
+        return stock != null;
+    }
+    return super.isSet(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public String toString()
+  {
+    if (isProxy(this)) return super.toString();
+
+    StringBuffer result = new StringBuffer(super.toString());
+    result.append(" (id: ");
+    result.append(id);
+    result.append(')');
+    return result.toString();
+  }
+
+} //purchaseStockImpl

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/purchaseStockImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/purchaseStockImpl.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/purchaseStockResponseImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/purchaseStockResponseImpl.java?view=auto&rev=510143
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/purchaseStockResponseImpl.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/purchaseStockResponseImpl.java Wed Feb 21 10:49:44 2007
@@ -0,0 +1,199 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package com.bigbank.account.impl;
+
+import com.bigbank.account.AccountFactory;
+import com.bigbank.account.StockSummary;
+import com.bigbank.account.purchaseStockResponse;
+
+import commonj.sdo.Type;
+
+import org.apache.tuscany.sdo.impl.DataObjectBase;
+
+/**
+ * <!-- begin-user-doc -->
+ * An implementation of the model object '<em><b>purchase Stock Response</b></em>'.
+ * <!-- end-user-doc -->
+ * <p>
+ * The following features are implemented:
+ * <ul>
+ *   <li>{@link com.bigbank.account.impl.purchaseStockResponseImpl#getPurchaseSummary <em>Purchase Summary</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @generated
+ */
+public class purchaseStockResponseImpl extends DataObjectBase implements purchaseStockResponse
+{
+  /**
+   * The feature id for the '<em><b>Purchase Summary</b></em>' containment reference.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int PURCHASE_SUMMARY = 0;
+
+  /**
+   * This represents the number of properties for this type.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */
+  
+  public final static int SDO_PROPERTY_COUNT = 1;
+
+  /**
+   * The cached value of the '{@link #getPurchaseSummary() <em>Purchase Summary</em>}' containment reference.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getPurchaseSummary()
+   * @generated
+   * @ordered
+   */
+  
+  protected StockSummary purchaseSummary = null;
+  
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public purchaseStockResponseImpl()
+  {
+    super();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Type getType()
+  {
+    return ((AccountFactoryImpl)AccountFactory.INSTANCE).getpurchaseStockResponse();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public StockSummary getPurchaseSummary()
+  {
+    return purchaseSummary;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public ChangeContext basicSetPurchaseSummary(StockSummary newPurchaseSummary, ChangeContext changeContext)
+  {
+    StockSummary oldPurchaseSummary = purchaseSummary;
+    purchaseSummary = newPurchaseSummary;
+    return changeContext;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setPurchaseSummary(StockSummary newPurchaseSummary)
+  {
+    if (newPurchaseSummary != purchaseSummary)
+    {
+      ChangeContext changeContext = null;
+      if (purchaseSummary != null)
+        changeContext = inverseRemove(purchaseSummary, this, OPPOSITE_FEATURE_BASE - PURCHASE_SUMMARY, null, changeContext);
+      if (newPurchaseSummary != null)
+        changeContext = inverseAdd(newPurchaseSummary, this, OPPOSITE_FEATURE_BASE - PURCHASE_SUMMARY, null, changeContext);
+      changeContext = basicSetPurchaseSummary(newPurchaseSummary, changeContext);
+      if (changeContext != null) dispatch(changeContext);
+    }
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public ChangeContext inverseRemove(Object otherEnd, int propertyIndex, ChangeContext changeContext)
+  {
+    switch (propertyIndex)
+    {
+      case PURCHASE_SUMMARY:
+        return basicSetPurchaseSummary(null, changeContext);
+    }
+    return super.inverseRemove(otherEnd, propertyIndex, changeContext);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Object get(int propertyIndex, boolean resolve)
+  {
+    switch (propertyIndex)
+    {
+      case PURCHASE_SUMMARY:
+        return getPurchaseSummary();
+    }
+    return super.get(propertyIndex, resolve);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void set(int propertyIndex, Object newValue)
+  {
+    switch (propertyIndex)
+    {
+      case PURCHASE_SUMMARY:
+        setPurchaseSummary((StockSummary)newValue);
+        return;
+    }
+    super.set(propertyIndex, newValue);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void unset(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case PURCHASE_SUMMARY:
+        setPurchaseSummary((StockSummary)null);
+        return;
+    }
+    super.unset(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public boolean isSet(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case PURCHASE_SUMMARY:
+        return purchaseSummary != null;
+    }
+    return super.isSet(propertyIndex);
+  }
+
+} //purchaseStockResponseImpl

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/purchaseStockResponseImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/purchaseStockResponseImpl.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/sellStockImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/sellStockImpl.java?view=auto&rev=510143
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/sellStockImpl.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/sellStockImpl.java Wed Feb 21 10:49:44 2007
@@ -0,0 +1,248 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package com.bigbank.account.impl;
+
+import com.bigbank.account.AccountFactory;
+import com.bigbank.account.sellStock;
+
+import commonj.sdo.Type;
+
+import org.apache.tuscany.sdo.impl.DataObjectBase;
+
+/**
+ * <!-- begin-user-doc -->
+ * An implementation of the model object '<em><b>sell Stock</b></em>'.
+ * <!-- end-user-doc -->
+ * <p>
+ * The following features are implemented:
+ * <ul>
+ *   <li>{@link com.bigbank.account.impl.sellStockImpl#getPurchaseLotNumber <em>Purchase Lot Number</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.sellStockImpl#getQuantity <em>Quantity</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @generated
+ */
+public class sellStockImpl extends DataObjectBase implements sellStock
+{
+  /**
+   * The feature id for the '<em><b>Purchase Lot Number</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int PURCHASE_LOT_NUMBER = 0;
+
+  /**
+   * The feature id for the '<em><b>Quantity</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int QUANTITY = 1;
+
+  /**
+   * This represents the number of properties for this type.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */
+  
+  public final static int SDO_PROPERTY_COUNT = 2;
+
+  /**
+   * The default value of the '{@link #getPurchaseLotNumber() <em>Purchase Lot Number</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getPurchaseLotNumber()
+   * @generated
+   * @ordered
+   */
+  protected static final int PURCHASE_LOT_NUMBER_DEFAULT_ = 0;
+
+  /**
+   * The cached value of the '{@link #getPurchaseLotNumber() <em>Purchase Lot Number</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getPurchaseLotNumber()
+   * @generated
+   * @ordered
+   */
+  protected int purchaseLotNumber = PURCHASE_LOT_NUMBER_DEFAULT_;
+
+  /**
+   * The default value of the '{@link #getQuantity() <em>Quantity</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getQuantity()
+   * @generated
+   * @ordered
+   */
+  protected static final int QUANTITY_DEFAULT_ = 0;
+
+  /**
+   * The cached value of the '{@link #getQuantity() <em>Quantity</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getQuantity()
+   * @generated
+   * @ordered
+   */
+  protected int quantity = QUANTITY_DEFAULT_;
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public sellStockImpl()
+  {
+    super();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Type getType()
+  {
+    return ((AccountFactoryImpl)AccountFactory.INSTANCE).getsellStock();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public int getPurchaseLotNumber()
+  {
+    return purchaseLotNumber;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setPurchaseLotNumber(int newPurchaseLotNumber)
+  {
+    purchaseLotNumber = newPurchaseLotNumber;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public int getQuantity()
+  {
+    return quantity;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setQuantity(int newQuantity)
+  {
+    quantity = newQuantity;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Object get(int propertyIndex, boolean resolve)
+  {
+    switch (propertyIndex)
+    {
+      case PURCHASE_LOT_NUMBER:
+        return new Integer(getPurchaseLotNumber());
+      case QUANTITY:
+        return new Integer(getQuantity());
+    }
+    return super.get(propertyIndex, resolve);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void set(int propertyIndex, Object newValue)
+  {
+    switch (propertyIndex)
+    {
+      case PURCHASE_LOT_NUMBER:
+        setPurchaseLotNumber(((Integer)newValue).intValue());
+        return;
+      case QUANTITY:
+        setQuantity(((Integer)newValue).intValue());
+        return;
+    }
+    super.set(propertyIndex, newValue);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void unset(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case PURCHASE_LOT_NUMBER:
+        setPurchaseLotNumber(PURCHASE_LOT_NUMBER_DEFAULT_);
+        return;
+      case QUANTITY:
+        setQuantity(QUANTITY_DEFAULT_);
+        return;
+    }
+    super.unset(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public boolean isSet(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case PURCHASE_LOT_NUMBER:
+        return purchaseLotNumber != PURCHASE_LOT_NUMBER_DEFAULT_;
+      case QUANTITY:
+        return quantity != QUANTITY_DEFAULT_;
+    }
+    return super.isSet(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public String toString()
+  {
+    if (isProxy(this)) return super.toString();
+
+    StringBuffer result = new StringBuffer(super.toString());
+    result.append(" (purchaseLotNumber: ");
+    result.append(purchaseLotNumber);
+    result.append(", quantity: ");
+    result.append(quantity);
+    result.append(')');
+    return result.toString();
+  }
+
+} //sellStockImpl

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/sellStockImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/sellStockImpl.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/withdrawImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/withdrawImpl.java?view=auto&rev=510143
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/withdrawImpl.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/withdrawImpl.java Wed Feb 21 10:49:44 2007
@@ -0,0 +1,248 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package com.bigbank.account.impl;
+
+import com.bigbank.account.AccountFactory;
+import com.bigbank.account.withdraw;
+
+import commonj.sdo.Type;
+
+import org.apache.tuscany.sdo.impl.DataObjectBase;
+
+/**
+ * <!-- begin-user-doc -->
+ * An implementation of the model object '<em><b>withdraw</b></em>'.
+ * <!-- end-user-doc -->
+ * <p>
+ * The following features are implemented:
+ * <ul>
+ *   <li>{@link com.bigbank.account.impl.withdrawImpl#getAccountNumber <em>Account Number</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.withdrawImpl#getAmount <em>Amount</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @generated
+ */
+public class withdrawImpl extends DataObjectBase implements withdraw
+{
+  /**
+   * The feature id for the '<em><b>Account Number</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int ACCOUNT_NUMBER = 0;
+
+  /**
+   * The feature id for the '<em><b>Amount</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int AMOUNT = 1;
+
+  /**
+   * This represents the number of properties for this type.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */
+  
+  public final static int SDO_PROPERTY_COUNT = 2;
+
+  /**
+   * The default value of the '{@link #getAccountNumber() <em>Account Number</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getAccountNumber()
+   * @generated
+   * @ordered
+   */
+  protected static final String ACCOUNT_NUMBER_DEFAULT_ = null;
+
+  /**
+   * The cached value of the '{@link #getAccountNumber() <em>Account Number</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getAccountNumber()
+   * @generated
+   * @ordered
+   */
+  protected String accountNumber = ACCOUNT_NUMBER_DEFAULT_;
+
+  /**
+   * The default value of the '{@link #getAmount() <em>Amount</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getAmount()
+   * @generated
+   * @ordered
+   */
+  protected static final float AMOUNT_DEFAULT_ = 0.0F;
+
+  /**
+   * The cached value of the '{@link #getAmount() <em>Amount</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getAmount()
+   * @generated
+   * @ordered
+   */
+  protected float amount = AMOUNT_DEFAULT_;
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public withdrawImpl()
+  {
+    super();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Type getType()
+  {
+    return ((AccountFactoryImpl)AccountFactory.INSTANCE).getwithdraw();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public String getAccountNumber()
+  {
+    return accountNumber;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setAccountNumber(String newAccountNumber)
+  {
+    accountNumber = newAccountNumber;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public float getAmount()
+  {
+    return amount;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setAmount(float newAmount)
+  {
+    amount = newAmount;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Object get(int propertyIndex, boolean resolve)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_NUMBER:
+        return getAccountNumber();
+      case AMOUNT:
+        return new Float(getAmount());
+    }
+    return super.get(propertyIndex, resolve);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void set(int propertyIndex, Object newValue)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_NUMBER:
+        setAccountNumber((String)newValue);
+        return;
+      case AMOUNT:
+        setAmount(((Float)newValue).floatValue());
+        return;
+    }
+    super.set(propertyIndex, newValue);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void unset(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_NUMBER:
+        setAccountNumber(ACCOUNT_NUMBER_DEFAULT_);
+        return;
+      case AMOUNT:
+        setAmount(AMOUNT_DEFAULT_);
+        return;
+    }
+    super.unset(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public boolean isSet(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_NUMBER:
+        return ACCOUNT_NUMBER_DEFAULT_ == null ? accountNumber != null : !ACCOUNT_NUMBER_DEFAULT_.equals(accountNumber);
+      case AMOUNT:
+        return amount != AMOUNT_DEFAULT_;
+    }
+    return super.isSet(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public String toString()
+  {
+    if (isProxy(this)) return super.toString();
+
+    StringBuffer result = new StringBuffer(super.toString());
+    result.append(" (accountNumber: ");
+    result.append(accountNumber);
+    result.append(", amount: ");
+    result.append(amount);
+    result.append(')');
+    return result.toString();
+  }
+
+} //withdrawImpl

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/withdrawImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/withdrawImpl.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/withdrawResponseImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/withdrawResponseImpl.java?view=auto&rev=510143
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/withdrawResponseImpl.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/withdrawResponseImpl.java Wed Feb 21 10:49:44 2007
@@ -0,0 +1,187 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package com.bigbank.account.impl;
+
+import com.bigbank.account.AccountFactory;
+import com.bigbank.account.withdrawResponse;
+
+import commonj.sdo.Type;
+
+import org.apache.tuscany.sdo.impl.DataObjectBase;
+
+/**
+ * <!-- begin-user-doc -->
+ * An implementation of the model object '<em><b>withdraw Response</b></em>'.
+ * <!-- end-user-doc -->
+ * <p>
+ * The following features are implemented:
+ * <ul>
+ *   <li>{@link com.bigbank.account.impl.withdrawResponseImpl#getBalance <em>Balance</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @generated
+ */
+public class withdrawResponseImpl extends DataObjectBase implements withdrawResponse
+{
+  /**
+   * The feature id for the '<em><b>Balance</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int BALANCE = 0;
+
+  /**
+   * This represents the number of properties for this type.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */
+  
+  public final static int SDO_PROPERTY_COUNT = 1;
+
+  /**
+   * The default value of the '{@link #getBalance() <em>Balance</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getBalance()
+   * @generated
+   * @ordered
+   */
+  protected static final float BALANCE_DEFAULT_ = 0.0F;
+
+  /**
+   * The cached value of the '{@link #getBalance() <em>Balance</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getBalance()
+   * @generated
+   * @ordered
+   */
+  protected float balance = BALANCE_DEFAULT_;
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public withdrawResponseImpl()
+  {
+    super();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Type getType()
+  {
+    return ((AccountFactoryImpl)AccountFactory.INSTANCE).getwithdrawResponse();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public float getBalance()
+  {
+    return balance;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setBalance(float newBalance)
+  {
+    balance = newBalance;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Object get(int propertyIndex, boolean resolve)
+  {
+    switch (propertyIndex)
+    {
+      case BALANCE:
+        return new Float(getBalance());
+    }
+    return super.get(propertyIndex, resolve);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void set(int propertyIndex, Object newValue)
+  {
+    switch (propertyIndex)
+    {
+      case BALANCE:
+        setBalance(((Float)newValue).floatValue());
+        return;
+    }
+    super.set(propertyIndex, newValue);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void unset(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case BALANCE:
+        setBalance(BALANCE_DEFAULT_);
+        return;
+    }
+    super.unset(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public boolean isSet(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case BALANCE:
+        return balance != BALANCE_DEFAULT_;
+    }
+    return super.isSet(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public String toString()
+  {
+    if (isProxy(this)) return super.toString();
+
+    StringBuffer result = new StringBuffer(super.toString());
+    result.append(" (balance: ");
+    result.append(balance);
+    result.append(')');
+    return result.toString();
+  }
+
+} //withdrawResponseImpl

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/withdrawResponseImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/withdrawResponseImpl.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/purchaseStock.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/purchaseStock.java?view=auto&rev=510143
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/purchaseStock.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/purchaseStock.java Wed Feb 21 10:49:44 2007
@@ -0,0 +1,77 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package com.bigbank.account;
+
+import java.io.Serializable;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>purchase Stock</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ *   <li>{@link com.bigbank.account.purchaseStock#getId <em>Id</em>}</li>
+ *   <li>{@link com.bigbank.account.purchaseStock#getStock <em>Stock</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @extends Serializable
+ * @generated
+ */
+public interface purchaseStock extends Serializable
+{
+  /**
+   * Returns the value of the '<em><b>Id</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <p>
+   * If the meaning of the '<em>Id</em>' attribute isn't clear,
+   * there really should be more of a description here...
+   * </p>
+   * <!-- end-user-doc -->
+   * @return the value of the '<em>Id</em>' attribute.
+   * @see #setId(int)
+   * @generated
+   */
+  int getId();
+
+  /**
+   * Sets the value of the '{@link com.bigbank.account.purchaseStock#getId <em>Id</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @param value the new value of the '<em>Id</em>' attribute.
+   * @see #getId()
+   * @generated
+   */
+  void setId(int value);
+
+  /**
+   * Returns the value of the '<em><b>Stock</b></em>' containment reference.
+   * <!-- begin-user-doc -->
+   * <p>
+   * If the meaning of the '<em>Stock</em>' containment reference isn't clear,
+   * there really should be more of a description here...
+   * </p>
+   * <!-- end-user-doc -->
+   * @return the value of the '<em>Stock</em>' containment reference.
+   * @see #setStock(StockSummary)
+   * @generated
+   */
+  StockSummary getStock();
+
+  /**
+   * Sets the value of the '{@link com.bigbank.account.purchaseStock#getStock <em>Stock</em>}' containment reference.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @param value the new value of the '<em>Stock</em>' containment reference.
+   * @see #getStock()
+   * @generated
+   */
+  void setStock(StockSummary value);
+
+} // purchaseStock

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/purchaseStock.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/purchaseStock.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/purchaseStockResponse.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/purchaseStockResponse.java?view=auto&rev=510143
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/purchaseStockResponse.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/purchaseStockResponse.java Wed Feb 21 10:49:44 2007
@@ -0,0 +1,52 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package com.bigbank.account;
+
+import java.io.Serializable;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>purchase Stock Response</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ *   <li>{@link com.bigbank.account.purchaseStockResponse#getPurchaseSummary <em>Purchase Summary</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @extends Serializable
+ * @generated
+ */
+public interface purchaseStockResponse extends Serializable
+{
+  /**
+   * Returns the value of the '<em><b>Purchase Summary</b></em>' containment reference.
+   * <!-- begin-user-doc -->
+   * <p>
+   * If the meaning of the '<em>Purchase Summary</em>' containment reference isn't clear,
+   * there really should be more of a description here...
+   * </p>
+   * <!-- end-user-doc -->
+   * @return the value of the '<em>Purchase Summary</em>' containment reference.
+   * @see #setPurchaseSummary(StockSummary)
+   * @generated
+   */
+  StockSummary getPurchaseSummary();
+
+  /**
+   * Sets the value of the '{@link com.bigbank.account.purchaseStockResponse#getPurchaseSummary <em>Purchase Summary</em>}' containment reference.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @param value the new value of the '<em>Purchase Summary</em>' containment reference.
+   * @see #getPurchaseSummary()
+   * @generated
+   */
+  void setPurchaseSummary(StockSummary value);
+
+} // purchaseStockResponse

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/purchaseStockResponse.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/purchaseStockResponse.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/sellStock.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/sellStock.java?view=auto&rev=510143
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/sellStock.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/sellStock.java Wed Feb 21 10:49:44 2007
@@ -0,0 +1,77 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package com.bigbank.account;
+
+import java.io.Serializable;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>sell Stock</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ *   <li>{@link com.bigbank.account.sellStock#getPurchaseLotNumber <em>Purchase Lot Number</em>}</li>
+ *   <li>{@link com.bigbank.account.sellStock#getQuantity <em>Quantity</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @extends Serializable
+ * @generated
+ */
+public interface sellStock extends Serializable
+{
+  /**
+   * Returns the value of the '<em><b>Purchase Lot Number</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <p>
+   * If the meaning of the '<em>Purchase Lot Number</em>' attribute isn't clear,
+   * there really should be more of a description here...
+   * </p>
+   * <!-- end-user-doc -->
+   * @return the value of the '<em>Purchase Lot Number</em>' attribute.
+   * @see #setPurchaseLotNumber(int)
+   * @generated
+   */
+  int getPurchaseLotNumber();
+
+  /**
+   * Sets the value of the '{@link com.bigbank.account.sellStock#getPurchaseLotNumber <em>Purchase Lot Number</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @param value the new value of the '<em>Purchase Lot Number</em>' attribute.
+   * @see #getPurchaseLotNumber()
+   * @generated
+   */
+  void setPurchaseLotNumber(int value);
+
+  /**
+   * Returns the value of the '<em><b>Quantity</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <p>
+   * If the meaning of the '<em>Quantity</em>' attribute isn't clear,
+   * there really should be more of a description here...
+   * </p>
+   * <!-- end-user-doc -->
+   * @return the value of the '<em>Quantity</em>' attribute.
+   * @see #setQuantity(int)
+   * @generated
+   */
+  int getQuantity();
+
+  /**
+   * Sets the value of the '{@link com.bigbank.account.sellStock#getQuantity <em>Quantity</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @param value the new value of the '<em>Quantity</em>' attribute.
+   * @see #getQuantity()
+   * @generated
+   */
+  void setQuantity(int value);
+
+} // sellStock

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/sellStock.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/sellStock.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org