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 [3/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/AccountLogImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/AccountLogImpl.java?view=auto&rev=510143
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/AccountLogImpl.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/AccountLogImpl.java Wed Feb 21 10:49:44 2007
@@ -0,0 +1,224 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package com.bigbank.account.impl;
+
+import com.bigbank.account.AccountFactory;
+import com.bigbank.account.AccountLog;
+import com.bigbank.account.AccountLogEntry;
+import com.bigbank.account.StockLogEntry;
+
+import commonj.sdo.Type;
+
+import java.util.Collection;
+import java.util.List;
+
+import org.apache.tuscany.sdo.impl.DataObjectBase;
+
+/**
+ * <!-- begin-user-doc -->
+ * An implementation of the model object '<em><b>Log</b></em>'.
+ * <!-- end-user-doc -->
+ * <p>
+ * The following features are implemented:
+ * <ul>
+ *   <li>{@link com.bigbank.account.impl.AccountLogImpl#getAccountLogEntries <em>Account Log Entries</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.AccountLogImpl#getStockLogEntries <em>Stock Log Entries</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @generated
+ */
+public class AccountLogImpl extends DataObjectBase implements AccountLog
+{
+  /**
+   * The feature id for the '<em><b>Account Log Entries</b></em>' containment reference list.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int ACCOUNT_LOG_ENTRIES = 0;
+
+  /**
+   * The feature id for the '<em><b>Stock Log Entries</b></em>' containment reference list.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int STOCK_LOG_ENTRIES = 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 cached value of the '{@link #getAccountLogEntries() <em>Account Log Entries</em>}' containment reference list.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getAccountLogEntries()
+   * @generated
+   * @ordered
+   */
+  
+  protected List accountLogEntries = null;
+  
+  /**
+   * The cached value of the '{@link #getStockLogEntries() <em>Stock Log Entries</em>}' containment reference list.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getStockLogEntries()
+   * @generated
+   * @ordered
+   */
+  
+  protected List stockLogEntries = null;
+  
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public AccountLogImpl()
+  {
+    super();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Type getType()
+  {
+    return ((AccountFactoryImpl)AccountFactory.INSTANCE).getAccountLog();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public List getAccountLogEntries()
+  {
+    if (accountLogEntries == null)
+    {
+      accountLogEntries = createPropertyList(ListKind.CONTAINMENT, AccountLogEntry.class, ACCOUNT_LOG_ENTRIES);
+    }
+    return accountLogEntries;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public List getStockLogEntries()
+  {
+    if (stockLogEntries == null)
+    {
+      stockLogEntries = createPropertyList(ListKind.CONTAINMENT, StockLogEntry.class, STOCK_LOG_ENTRIES);
+    }
+    return stockLogEntries;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public ChangeContext inverseRemove(Object otherEnd, int propertyIndex, ChangeContext changeContext)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_LOG_ENTRIES:
+        return removeFromList(getAccountLogEntries(), otherEnd, changeContext);
+      case STOCK_LOG_ENTRIES:
+        return removeFromList(getStockLogEntries(), otherEnd, 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_ENTRIES:
+        return getAccountLogEntries();
+      case STOCK_LOG_ENTRIES:
+        return getStockLogEntries();
+    }
+    return super.get(propertyIndex, resolve);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void set(int propertyIndex, Object newValue)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_LOG_ENTRIES:
+        getAccountLogEntries().clear();
+        getAccountLogEntries().addAll((Collection)newValue);
+        return;
+      case STOCK_LOG_ENTRIES:
+        getStockLogEntries().clear();
+        getStockLogEntries().addAll((Collection)newValue);
+        return;
+    }
+    super.set(propertyIndex, newValue);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void unset(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_LOG_ENTRIES:
+        getAccountLogEntries().clear();
+        return;
+      case STOCK_LOG_ENTRIES:
+        getStockLogEntries().clear();
+        return;
+    }
+    super.unset(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public boolean isSet(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_LOG_ENTRIES:
+        return accountLogEntries != null && !accountLogEntries.isEmpty();
+      case STOCK_LOG_ENTRIES:
+        return stockLogEntries != null && !stockLogEntries.isEmpty();
+    }
+    return super.isSet(propertyIndex);
+  }
+
+} //AccountLogImpl

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

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

Added: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/AccountReportImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/AccountReportImpl.java?view=auto&rev=510143
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/AccountReportImpl.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/AccountReportImpl.java Wed Feb 21 10:49:44 2007
@@ -0,0 +1,224 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package com.bigbank.account.impl;
+
+import com.bigbank.account.AccountFactory;
+import com.bigbank.account.AccountReport;
+import com.bigbank.account.AccountSummary;
+import com.bigbank.account.StockSummary;
+
+import commonj.sdo.Type;
+
+import java.util.Collection;
+import java.util.List;
+
+import org.apache.tuscany.sdo.impl.DataObjectBase;
+
+/**
+ * <!-- begin-user-doc -->
+ * An implementation of the model object '<em><b>Report</b></em>'.
+ * <!-- end-user-doc -->
+ * <p>
+ * The following features are implemented:
+ * <ul>
+ *   <li>{@link com.bigbank.account.impl.AccountReportImpl#getAccountSummaries <em>Account Summaries</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.AccountReportImpl#getStockSummaries <em>Stock Summaries</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @generated
+ */
+public class AccountReportImpl extends DataObjectBase implements AccountReport
+{
+  /**
+   * The feature id for the '<em><b>Account Summaries</b></em>' containment reference list.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int ACCOUNT_SUMMARIES = 0;
+
+  /**
+   * The feature id for the '<em><b>Stock Summaries</b></em>' containment reference list.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int STOCK_SUMMARIES = 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 cached value of the '{@link #getAccountSummaries() <em>Account Summaries</em>}' containment reference list.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getAccountSummaries()
+   * @generated
+   * @ordered
+   */
+  
+  protected List accountSummaries = null;
+  
+  /**
+   * The cached value of the '{@link #getStockSummaries() <em>Stock Summaries</em>}' containment reference list.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getStockSummaries()
+   * @generated
+   * @ordered
+   */
+  
+  protected List stockSummaries = null;
+  
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public AccountReportImpl()
+  {
+    super();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Type getType()
+  {
+    return ((AccountFactoryImpl)AccountFactory.INSTANCE).getAccountReport();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public List getAccountSummaries()
+  {
+    if (accountSummaries == null)
+    {
+      accountSummaries = createPropertyList(ListKind.CONTAINMENT, AccountSummary.class, ACCOUNT_SUMMARIES);
+    }
+    return accountSummaries;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public List getStockSummaries()
+  {
+    if (stockSummaries == null)
+    {
+      stockSummaries = createPropertyList(ListKind.CONTAINMENT, StockSummary.class, STOCK_SUMMARIES);
+    }
+    return stockSummaries;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public ChangeContext inverseRemove(Object otherEnd, int propertyIndex, ChangeContext changeContext)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_SUMMARIES:
+        return removeFromList(getAccountSummaries(), otherEnd, changeContext);
+      case STOCK_SUMMARIES:
+        return removeFromList(getStockSummaries(), otherEnd, 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_SUMMARIES:
+        return getAccountSummaries();
+      case STOCK_SUMMARIES:
+        return getStockSummaries();
+    }
+    return super.get(propertyIndex, resolve);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void set(int propertyIndex, Object newValue)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_SUMMARIES:
+        getAccountSummaries().clear();
+        getAccountSummaries().addAll((Collection)newValue);
+        return;
+      case STOCK_SUMMARIES:
+        getStockSummaries().clear();
+        getStockSummaries().addAll((Collection)newValue);
+        return;
+    }
+    super.set(propertyIndex, newValue);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void unset(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_SUMMARIES:
+        getAccountSummaries().clear();
+        return;
+      case STOCK_SUMMARIES:
+        getStockSummaries().clear();
+        return;
+    }
+    super.unset(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public boolean isSet(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case ACCOUNT_SUMMARIES:
+        return accountSummaries != null && !accountSummaries.isEmpty();
+      case STOCK_SUMMARIES:
+        return stockSummaries != null && !stockSummaries.isEmpty();
+    }
+    return super.isSet(propertyIndex);
+  }
+
+} //AccountReportImpl

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

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

Added: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/AccountSummaryImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/AccountSummaryImpl.java?view=auto&rev=510143
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/AccountSummaryImpl.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/AccountSummaryImpl.java Wed Feb 21 10:49:44 2007
@@ -0,0 +1,309 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package com.bigbank.account.impl;
+
+import com.bigbank.account.AccountFactory;
+import com.bigbank.account.AccountSummary;
+
+import commonj.sdo.Type;
+
+import org.apache.tuscany.sdo.impl.DataObjectBase;
+
+/**
+ * <!-- begin-user-doc -->
+ * An implementation of the model object '<em><b>Summary</b></em>'.
+ * <!-- end-user-doc -->
+ * <p>
+ * The following features are implemented:
+ * <ul>
+ *   <li>{@link com.bigbank.account.impl.AccountSummaryImpl#getAccountNumber <em>Account Number</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.AccountSummaryImpl#getAccountType <em>Account Type</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.AccountSummaryImpl#getBalance <em>Balance</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @generated
+ */
+public class AccountSummaryImpl extends DataObjectBase implements AccountSummary
+{
+  /**
+   * 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>Account Type</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int ACCOUNT_TYPE = 1;
+
+  /**
+   * The feature id for the '<em><b>Balance</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int BALANCE = 2;
+
+  /**
+   * This represents the number of properties for this type.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */
+  
+  public final static int SDO_PROPERTY_COUNT = 3;
+
+  /**
+   * 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 #getAccountType() <em>Account Type</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getAccountType()
+   * @generated
+   * @ordered
+   */
+  protected static final String ACCOUNT_TYPE_DEFAULT_ = null;
+
+  /**
+   * The cached value of the '{@link #getAccountType() <em>Account Type</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getAccountType()
+   * @generated
+   * @ordered
+   */
+  protected String accountType = ACCOUNT_TYPE_DEFAULT_;
+
+  /**
+   * 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 AccountSummaryImpl()
+  {
+    super();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Type getType()
+  {
+    return ((AccountFactoryImpl)AccountFactory.INSTANCE).getAccountSummary();
+  }
+
+  /**
+   * <!-- 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 String getAccountType()
+  {
+    return accountType;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setAccountType(String newAccountType)
+  {
+    accountType = newAccountType;
+  }
+
+  /**
+   * <!-- 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 ACCOUNT_NUMBER:
+        return getAccountNumber();
+      case ACCOUNT_TYPE:
+        return getAccountType();
+      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 ACCOUNT_NUMBER:
+        setAccountNumber((String)newValue);
+        return;
+      case ACCOUNT_TYPE:
+        setAccountType((String)newValue);
+        return;
+      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 ACCOUNT_NUMBER:
+        setAccountNumber(ACCOUNT_NUMBER_DEFAULT_);
+        return;
+      case ACCOUNT_TYPE:
+        setAccountType(ACCOUNT_TYPE_DEFAULT_);
+        return;
+      case BALANCE:
+        setBalance(BALANCE_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 ACCOUNT_TYPE:
+        return ACCOUNT_TYPE_DEFAULT_ == null ? accountType != null : !ACCOUNT_TYPE_DEFAULT_.equals(accountType);
+      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(" (accountNumber: ");
+    result.append(accountNumber);
+    result.append(", accountType: ");
+    result.append(accountType);
+    result.append(", balance: ");
+    result.append(balance);
+    result.append(')');
+    return result.toString();
+  }
+
+} //AccountSummaryImpl

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

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

Added: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/CustomerProfileDataImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/CustomerProfileDataImpl.java?view=auto&rev=510143
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/CustomerProfileDataImpl.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/CustomerProfileDataImpl.java Wed Feb 21 10:49:44 2007
@@ -0,0 +1,554 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package com.bigbank.account.impl;
+
+import com.bigbank.account.AccountFactory;
+import com.bigbank.account.CustomerProfileData;
+
+import commonj.sdo.Type;
+
+import org.apache.tuscany.api.annotation.DataType;
+import org.apache.tuscany.sdo.impl.DataObjectBase;
+
+/**
+ * <!-- begin-user-doc -->
+ * An implementation of the model object '<em><b>Customer Profile Data</b></em>'.
+ * <!-- end-user-doc -->
+ * <p>
+ * The following features are implemented:
+ * <ul>
+ *   <li>{@link com.bigbank.account.impl.CustomerProfileDataImpl#getFirstName <em>First Name</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.CustomerProfileDataImpl#getLastName <em>Last Name</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.CustomerProfileDataImpl#getAddress <em>Address</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.CustomerProfileDataImpl#getEmail <em>Email</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.CustomerProfileDataImpl#getLoginID <em>Login ID</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.CustomerProfileDataImpl#getPassword <em>Password</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.CustomerProfileDataImpl#getId <em>Id</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @generated
+ */
+public class CustomerProfileDataImpl extends DataObjectBase implements CustomerProfileData
+{
+  /**
+   * The feature id for the '<em><b>First Name</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int FIRST_NAME = 0;
+
+  /**
+   * The feature id for the '<em><b>Last Name</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int LAST_NAME = 1;
+
+  /**
+   * The feature id for the '<em><b>Address</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int ADDRESS = 2;
+
+  /**
+   * The feature id for the '<em><b>Email</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int EMAIL = 3;
+
+  /**
+   * 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 = 4;
+
+  /**
+   * The feature id for the '<em><b>Password</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int PASSWORD = 5;
+
+  /**
+   * The feature id for the '<em><b>Id</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int ID = 6;
+
+  /**
+   * This represents the number of properties for this type.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */
+  
+  public final static int SDO_PROPERTY_COUNT = 7;
+
+  /**
+   * The default value of the '{@link #getFirstName() <em>First Name</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getFirstName()
+   * @generated
+   * @ordered
+   */
+  protected static final String FIRST_NAME_DEFAULT_ = null;
+
+  /**
+   * The cached value of the '{@link #getFirstName() <em>First Name</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getFirstName()
+   * @generated
+   * @ordered
+   */
+  protected String firstName = FIRST_NAME_DEFAULT_;
+
+  /**
+   * The default value of the '{@link #getLastName() <em>Last Name</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getLastName()
+   * @generated
+   * @ordered
+   */
+  protected static final String LAST_NAME_DEFAULT_ = null;
+
+  /**
+   * The cached value of the '{@link #getLastName() <em>Last Name</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getLastName()
+   * @generated
+   * @ordered
+   */
+  protected String lastName = LAST_NAME_DEFAULT_;
+
+  /**
+   * The default value of the '{@link #getAddress() <em>Address</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getAddress()
+   * @generated
+   * @ordered
+   */
+  protected static final String ADDRESS_DEFAULT_ = null;
+
+  /**
+   * The cached value of the '{@link #getAddress() <em>Address</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getAddress()
+   * @generated
+   * @ordered
+   */
+  protected String address = ADDRESS_DEFAULT_;
+
+  /**
+   * The default value of the '{@link #getEmail() <em>Email</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getEmail()
+   * @generated
+   * @ordered
+   */
+  protected static final String EMAIL_DEFAULT_ = null;
+
+  /**
+   * The cached value of the '{@link #getEmail() <em>Email</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getEmail()
+   * @generated
+   * @ordered
+   */
+  protected String email = EMAIL_DEFAULT_;
+
+  /**
+   * 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_;
+
+  /**
+   * The default value of the '{@link #getPassword() <em>Password</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getPassword()
+   * @generated
+   * @ordered
+   */
+  protected static final String PASSWORD_DEFAULT_ = null;
+
+  /**
+   * The cached value of the '{@link #getPassword() <em>Password</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getPassword()
+   * @generated
+   * @ordered
+   */
+  protected String password = PASSWORD_DEFAULT_;
+
+  /**
+   * 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_;
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public CustomerProfileDataImpl()
+  {
+    super();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Type getType()
+  {
+    return ((AccountFactoryImpl)AccountFactory.INSTANCE).getCustomerProfileData();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public String getFirstName()
+  {
+    return firstName;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setFirstName(String newFirstName)
+  {
+    firstName = newFirstName;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public String getLastName()
+  {
+    return lastName;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setLastName(String newLastName)
+  {
+    lastName = newLastName;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public String getAddress()
+  {
+    return address;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setAddress(String newAddress)
+  {
+    address = newAddress;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public String getEmail()
+  {
+    return email;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setEmail(String newEmail)
+  {
+    email = newEmail;
+  }
+
+  /**
+   * <!-- 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 String getPassword()
+  {
+    return password;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setPassword(String newPassword)
+  {
+    password = newPassword;
+  }
+
+  /**
+   * <!-- 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 Object get(int propertyIndex, boolean resolve)
+  {
+    switch (propertyIndex)
+    {
+      case FIRST_NAME:
+        return getFirstName();
+      case LAST_NAME:
+        return getLastName();
+      case ADDRESS:
+        return getAddress();
+      case EMAIL:
+        return getEmail();
+      case LOGIN_ID:
+        return getLoginID();
+      case PASSWORD:
+        return getPassword();
+      case ID:
+        return new Integer(getId());
+    }
+    return super.get(propertyIndex, resolve);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void set(int propertyIndex, Object newValue)
+  {
+    switch (propertyIndex)
+    {
+      case FIRST_NAME:
+        setFirstName((String)newValue);
+        return;
+      case LAST_NAME:
+        setLastName((String)newValue);
+        return;
+      case ADDRESS:
+        setAddress((String)newValue);
+        return;
+      case EMAIL:
+        setEmail((String)newValue);
+        return;
+      case LOGIN_ID:
+        setLoginID((String)newValue);
+        return;
+      case PASSWORD:
+        setPassword((String)newValue);
+        return;
+      case ID:
+        setId(((Integer)newValue).intValue());
+        return;
+    }
+    super.set(propertyIndex, newValue);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void unset(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case FIRST_NAME:
+        setFirstName(FIRST_NAME_DEFAULT_);
+        return;
+      case LAST_NAME:
+        setLastName(LAST_NAME_DEFAULT_);
+        return;
+      case ADDRESS:
+        setAddress(ADDRESS_DEFAULT_);
+        return;
+      case EMAIL:
+        setEmail(EMAIL_DEFAULT_);
+        return;
+      case LOGIN_ID:
+        setLoginID(LOGIN_ID_DEFAULT_);
+        return;
+      case PASSWORD:
+        setPassword(PASSWORD_DEFAULT_);
+        return;
+      case ID:
+        setId(ID_DEFAULT_);
+        return;
+    }
+    super.unset(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public boolean isSet(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case FIRST_NAME:
+        return FIRST_NAME_DEFAULT_ == null ? firstName != null : !FIRST_NAME_DEFAULT_.equals(firstName);
+      case LAST_NAME:
+        return LAST_NAME_DEFAULT_ == null ? lastName != null : !LAST_NAME_DEFAULT_.equals(lastName);
+      case ADDRESS:
+        return ADDRESS_DEFAULT_ == null ? address != null : !ADDRESS_DEFAULT_.equals(address);
+      case EMAIL:
+        return EMAIL_DEFAULT_ == null ? email != null : !EMAIL_DEFAULT_.equals(email);
+      case LOGIN_ID:
+        return LOGIN_ID_DEFAULT_ == null ? loginID != null : !LOGIN_ID_DEFAULT_.equals(loginID);
+      case PASSWORD:
+        return PASSWORD_DEFAULT_ == null ? password != null : !PASSWORD_DEFAULT_.equals(password);
+      case ID:
+        return id != 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(" (firstName: ");
+    result.append(firstName);
+    result.append(", lastName: ");
+    result.append(lastName);
+    result.append(", address: ");
+    result.append(address);
+    result.append(", email: ");
+    result.append(email);
+    result.append(", loginID: ");
+    result.append(loginID);
+    result.append(", password: ");
+    result.append(password);
+    result.append(", id: ");
+    result.append(id);
+    result.append(')');
+    return result.toString();
+  }
+
+} //CustomerProfileDataImpl

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

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

Added: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/StockLogEntryImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/StockLogEntryImpl.java?view=auto&rev=510143
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/StockLogEntryImpl.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/StockLogEntryImpl.java Wed Feb 21 10:49:44 2007
@@ -0,0 +1,492 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package com.bigbank.account.impl;
+
+import com.bigbank.account.AccountFactory;
+import com.bigbank.account.StockLogEntry;
+
+import commonj.sdo.Type;
+
+import org.apache.tuscany.sdo.impl.DataObjectBase;
+
+/**
+ * <!-- begin-user-doc -->
+ * An implementation of the model object '<em><b>Stock Log Entry</b></em>'.
+ * <!-- end-user-doc -->
+ * <p>
+ * The following features are implemented:
+ * <ul>
+ *   <li>{@link com.bigbank.account.impl.StockLogEntryImpl#getLogSeqNo <em>Log Seq No</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.StockLogEntryImpl#getId <em>Id</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.StockLogEntryImpl#getSymbol <em>Symbol</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.StockLogEntryImpl#getQuantity <em>Quantity</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.StockLogEntryImpl#getActionType <em>Action Type</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.StockLogEntryImpl#getPurchaseLotNumber <em>Purchase Lot Number</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @generated
+ */
+public class StockLogEntryImpl extends DataObjectBase implements StockLogEntry
+{
+  /**
+   * The feature id for the '<em><b>Log Seq No</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int LOG_SEQ_NO = 0;
+
+  /**
+   * The feature id for the '<em><b>Id</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int ID = 1;
+
+  /**
+   * The feature id for the '<em><b>Symbol</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int SYMBOL = 2;
+
+  /**
+   * The feature id for the '<em><b>Quantity</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int QUANTITY = 3;
+
+  /**
+   * The feature id for the '<em><b>Action Type</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int ACTION_TYPE = 4;
+
+  /**
+   * 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 = 5;
+
+  /**
+   * This represents the number of properties for this type.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */
+  
+  public final static int SDO_PROPERTY_COUNT = 6;
+
+  /**
+   * The default value of the '{@link #getLogSeqNo() <em>Log Seq No</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getLogSeqNo()
+   * @generated
+   * @ordered
+   */
+  protected static final int LOG_SEQ_NO_DEFAULT_ = 0;
+
+  /**
+   * The cached value of the '{@link #getLogSeqNo() <em>Log Seq No</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getLogSeqNo()
+   * @generated
+   * @ordered
+   */
+  protected int logSeqNo = LOG_SEQ_NO_DEFAULT_;
+
+  /**
+   * 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 default value of the '{@link #getSymbol() <em>Symbol</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getSymbol()
+   * @generated
+   * @ordered
+   */
+  protected static final String SYMBOL_DEFAULT_ = null;
+
+  /**
+   * The cached value of the '{@link #getSymbol() <em>Symbol</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getSymbol()
+   * @generated
+   * @ordered
+   */
+  protected String symbol = SYMBOL_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_;
+
+  /**
+   * The default value of the '{@link #getActionType() <em>Action Type</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getActionType()
+   * @generated
+   * @ordered
+   */
+  protected static final String ACTION_TYPE_DEFAULT_ = null;
+
+  /**
+   * The cached value of the '{@link #getActionType() <em>Action Type</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getActionType()
+   * @generated
+   * @ordered
+   */
+  protected String actionType = ACTION_TYPE_DEFAULT_;
+
+  /**
+   * 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_;
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public StockLogEntryImpl()
+  {
+    super();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Type getType()
+  {
+    return ((AccountFactoryImpl)AccountFactory.INSTANCE).getStockLogEntry();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public int getLogSeqNo()
+  {
+    return logSeqNo;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setLogSeqNo(int newLogSeqNo)
+  {
+    logSeqNo = newLogSeqNo;
+  }
+
+  /**
+   * <!-- 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 String getSymbol()
+  {
+    return symbol;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setSymbol(String newSymbol)
+  {
+    symbol = newSymbol;
+  }
+
+  /**
+   * <!-- 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 String getActionType()
+  {
+    return actionType;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setActionType(String newActionType)
+  {
+    actionType = newActionType;
+  }
+
+  /**
+   * <!-- 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 Object get(int propertyIndex, boolean resolve)
+  {
+    switch (propertyIndex)
+    {
+      case LOG_SEQ_NO:
+        return new Integer(getLogSeqNo());
+      case ID:
+        return new Integer(getId());
+      case SYMBOL:
+        return getSymbol();
+      case QUANTITY:
+        return new Integer(getQuantity());
+      case ACTION_TYPE:
+        return getActionType();
+      case PURCHASE_LOT_NUMBER:
+        return new Integer(getPurchaseLotNumber());
+    }
+    return super.get(propertyIndex, resolve);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void set(int propertyIndex, Object newValue)
+  {
+    switch (propertyIndex)
+    {
+      case LOG_SEQ_NO:
+        setLogSeqNo(((Integer)newValue).intValue());
+        return;
+      case ID:
+        setId(((Integer)newValue).intValue());
+        return;
+      case SYMBOL:
+        setSymbol((String)newValue);
+        return;
+      case QUANTITY:
+        setQuantity(((Integer)newValue).intValue());
+        return;
+      case ACTION_TYPE:
+        setActionType((String)newValue);
+        return;
+      case PURCHASE_LOT_NUMBER:
+        setPurchaseLotNumber(((Integer)newValue).intValue());
+        return;
+    }
+    super.set(propertyIndex, newValue);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void unset(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case LOG_SEQ_NO:
+        setLogSeqNo(LOG_SEQ_NO_DEFAULT_);
+        return;
+      case ID:
+        setId(ID_DEFAULT_);
+        return;
+      case SYMBOL:
+        setSymbol(SYMBOL_DEFAULT_);
+        return;
+      case QUANTITY:
+        setQuantity(QUANTITY_DEFAULT_);
+        return;
+      case ACTION_TYPE:
+        setActionType(ACTION_TYPE_DEFAULT_);
+        return;
+      case PURCHASE_LOT_NUMBER:
+        setPurchaseLotNumber(PURCHASE_LOT_NUMBER_DEFAULT_);
+        return;
+    }
+    super.unset(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public boolean isSet(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case LOG_SEQ_NO:
+        return logSeqNo != LOG_SEQ_NO_DEFAULT_;
+      case ID:
+        return id != ID_DEFAULT_;
+      case SYMBOL:
+        return SYMBOL_DEFAULT_ == null ? symbol != null : !SYMBOL_DEFAULT_.equals(symbol);
+      case QUANTITY:
+        return quantity != QUANTITY_DEFAULT_;
+      case ACTION_TYPE:
+        return ACTION_TYPE_DEFAULT_ == null ? actionType != null : !ACTION_TYPE_DEFAULT_.equals(actionType);
+      case PURCHASE_LOT_NUMBER:
+        return purchaseLotNumber != PURCHASE_LOT_NUMBER_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(" (logSeqNo: ");
+    result.append(logSeqNo);
+    result.append(", id: ");
+    result.append(id);
+    result.append(", symbol: ");
+    result.append(symbol);
+    result.append(", quantity: ");
+    result.append(quantity);
+    result.append(", actionType: ");
+    result.append(actionType);
+    result.append(", purchaseLotNumber: ");
+    result.append(purchaseLotNumber);
+    result.append(')');
+    return result.toString();
+  }
+
+} //StockLogEntryImpl

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

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

Added: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/StockSummaryImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/StockSummaryImpl.java?view=auto&rev=510143
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/StockSummaryImpl.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/StockSummaryImpl.java Wed Feb 21 10:49:44 2007
@@ -0,0 +1,675 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package com.bigbank.account.impl;
+
+import com.bigbank.account.AccountFactory;
+import com.bigbank.account.StockSummary;
+
+import commonj.sdo.Type;
+
+import org.apache.tuscany.sdo.impl.DataObjectBase;
+
+/**
+ * <!-- begin-user-doc -->
+ * An implementation of the model object '<em><b>Stock Summary</b></em>'.
+ * <!-- end-user-doc -->
+ * <p>
+ * The following features are implemented:
+ * <ul>
+ *   <li>{@link com.bigbank.account.impl.StockSummaryImpl#getPurchaseLotNumber <em>Purchase Lot Number</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.StockSummaryImpl#getSymbol <em>Symbol</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.StockSummaryImpl#getQuantity <em>Quantity</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.StockSummaryImpl#getPurchaseDate <em>Purchase Date</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.StockSummaryImpl#getPurchasePrice <em>Purchase Price</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.StockSummaryImpl#getCurrentPrice <em>Current Price</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.StockSummaryImpl#getCompany <em>Company</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.StockSummaryImpl#getHighPrice <em>High Price</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.StockSummaryImpl#getLowPrice <em>Low Price</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @generated
+ */
+public class StockSummaryImpl extends DataObjectBase implements StockSummary
+{
+  /**
+   * 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>Symbol</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int SYMBOL = 1;
+
+  /**
+   * The feature id for the '<em><b>Quantity</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int QUANTITY = 2;
+
+  /**
+   * The feature id for the '<em><b>Purchase Date</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int PURCHASE_DATE = 3;
+
+  /**
+   * The feature id for the '<em><b>Purchase Price</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int PURCHASE_PRICE = 4;
+
+  /**
+   * The feature id for the '<em><b>Current Price</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int CURRENT_PRICE = 5;
+
+  /**
+   * The feature id for the '<em><b>Company</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int COMPANY = 6;
+
+  /**
+   * The feature id for the '<em><b>High Price</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int HIGH_PRICE = 7;
+
+  /**
+   * The feature id for the '<em><b>Low Price</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int LOW_PRICE = 8;
+
+  /**
+   * This represents the number of properties for this type.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */
+  
+  public final static int SDO_PROPERTY_COUNT = 9;
+
+  /**
+   * 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 #getSymbol() <em>Symbol</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getSymbol()
+   * @generated
+   * @ordered
+   */
+  protected static final String SYMBOL_DEFAULT_ = null;
+
+  /**
+   * The cached value of the '{@link #getSymbol() <em>Symbol</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getSymbol()
+   * @generated
+   * @ordered
+   */
+  protected String symbol = SYMBOL_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_;
+
+  /**
+   * The default value of the '{@link #getPurchaseDate() <em>Purchase Date</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getPurchaseDate()
+   * @generated
+   * @ordered
+   */
+  protected static final String PURCHASE_DATE_DEFAULT_ = null;
+
+  /**
+   * The cached value of the '{@link #getPurchaseDate() <em>Purchase Date</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getPurchaseDate()
+   * @generated
+   * @ordered
+   */
+  protected String purchaseDate = PURCHASE_DATE_DEFAULT_;
+
+  /**
+   * The default value of the '{@link #getPurchasePrice() <em>Purchase Price</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getPurchasePrice()
+   * @generated
+   * @ordered
+   */
+  protected static final float PURCHASE_PRICE_DEFAULT_ = 0.0F;
+
+  /**
+   * The cached value of the '{@link #getPurchasePrice() <em>Purchase Price</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getPurchasePrice()
+   * @generated
+   * @ordered
+   */
+  protected float purchasePrice = PURCHASE_PRICE_DEFAULT_;
+
+  /**
+   * The default value of the '{@link #getCurrentPrice() <em>Current Price</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getCurrentPrice()
+   * @generated
+   * @ordered
+   */
+  protected static final float CURRENT_PRICE_DEFAULT_ = 0.0F;
+
+  /**
+   * The cached value of the '{@link #getCurrentPrice() <em>Current Price</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getCurrentPrice()
+   * @generated
+   * @ordered
+   */
+  protected float currentPrice = CURRENT_PRICE_DEFAULT_;
+
+  /**
+   * The default value of the '{@link #getCompany() <em>Company</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getCompany()
+   * @generated
+   * @ordered
+   */
+  protected static final String COMPANY_DEFAULT_ = null;
+
+  /**
+   * The cached value of the '{@link #getCompany() <em>Company</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getCompany()
+   * @generated
+   * @ordered
+   */
+  protected String company = COMPANY_DEFAULT_;
+
+  /**
+   * The default value of the '{@link #getHighPrice() <em>High Price</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getHighPrice()
+   * @generated
+   * @ordered
+   */
+  protected static final float HIGH_PRICE_DEFAULT_ = 0.0F;
+
+  /**
+   * The cached value of the '{@link #getHighPrice() <em>High Price</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getHighPrice()
+   * @generated
+   * @ordered
+   */
+  protected float highPrice = HIGH_PRICE_DEFAULT_;
+
+  /**
+   * The default value of the '{@link #getLowPrice() <em>Low Price</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getLowPrice()
+   * @generated
+   * @ordered
+   */
+  protected static final float LOW_PRICE_DEFAULT_ = 0.0F;
+
+  /**
+   * The cached value of the '{@link #getLowPrice() <em>Low Price</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #getLowPrice()
+   * @generated
+   * @ordered
+   */
+  protected float lowPrice = LOW_PRICE_DEFAULT_;
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public StockSummaryImpl()
+  {
+    super();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Type getType()
+  {
+    return ((AccountFactoryImpl)AccountFactory.INSTANCE).getStockSummary();
+  }
+
+  /**
+   * <!-- 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 String getSymbol()
+  {
+    return symbol;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setSymbol(String newSymbol)
+  {
+    symbol = newSymbol;
+  }
+
+  /**
+   * <!-- 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 String getPurchaseDate()
+  {
+    return purchaseDate;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setPurchaseDate(String newPurchaseDate)
+  {
+    purchaseDate = newPurchaseDate;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public float getPurchasePrice()
+  {
+    return purchasePrice;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setPurchasePrice(float newPurchasePrice)
+  {
+    purchasePrice = newPurchasePrice;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public float getCurrentPrice()
+  {
+    return currentPrice;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setCurrentPrice(float newCurrentPrice)
+  {
+    currentPrice = newCurrentPrice;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public String getCompany()
+  {
+    return company;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setCompany(String newCompany)
+  {
+    company = newCompany;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public float getHighPrice()
+  {
+    return highPrice;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setHighPrice(float newHighPrice)
+  {
+    highPrice = newHighPrice;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public float getLowPrice()
+  {
+    return lowPrice;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setLowPrice(float newLowPrice)
+  {
+    lowPrice = newLowPrice;
+  }
+
+  /**
+   * <!-- 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 SYMBOL:
+        return getSymbol();
+      case QUANTITY:
+        return new Integer(getQuantity());
+      case PURCHASE_DATE:
+        return getPurchaseDate();
+      case PURCHASE_PRICE:
+        return new Float(getPurchasePrice());
+      case CURRENT_PRICE:
+        return new Float(getCurrentPrice());
+      case COMPANY:
+        return getCompany();
+      case HIGH_PRICE:
+        return new Float(getHighPrice());
+      case LOW_PRICE:
+        return new Float(getLowPrice());
+    }
+    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 SYMBOL:
+        setSymbol((String)newValue);
+        return;
+      case QUANTITY:
+        setQuantity(((Integer)newValue).intValue());
+        return;
+      case PURCHASE_DATE:
+        setPurchaseDate((String)newValue);
+        return;
+      case PURCHASE_PRICE:
+        setPurchasePrice(((Float)newValue).floatValue());
+        return;
+      case CURRENT_PRICE:
+        setCurrentPrice(((Float)newValue).floatValue());
+        return;
+      case COMPANY:
+        setCompany((String)newValue);
+        return;
+      case HIGH_PRICE:
+        setHighPrice(((Float)newValue).floatValue());
+        return;
+      case LOW_PRICE:
+        setLowPrice(((Float)newValue).floatValue());
+        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 SYMBOL:
+        setSymbol(SYMBOL_DEFAULT_);
+        return;
+      case QUANTITY:
+        setQuantity(QUANTITY_DEFAULT_);
+        return;
+      case PURCHASE_DATE:
+        setPurchaseDate(PURCHASE_DATE_DEFAULT_);
+        return;
+      case PURCHASE_PRICE:
+        setPurchasePrice(PURCHASE_PRICE_DEFAULT_);
+        return;
+      case CURRENT_PRICE:
+        setCurrentPrice(CURRENT_PRICE_DEFAULT_);
+        return;
+      case COMPANY:
+        setCompany(COMPANY_DEFAULT_);
+        return;
+      case HIGH_PRICE:
+        setHighPrice(HIGH_PRICE_DEFAULT_);
+        return;
+      case LOW_PRICE:
+        setLowPrice(LOW_PRICE_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 SYMBOL:
+        return SYMBOL_DEFAULT_ == null ? symbol != null : !SYMBOL_DEFAULT_.equals(symbol);
+      case QUANTITY:
+        return quantity != QUANTITY_DEFAULT_;
+      case PURCHASE_DATE:
+        return PURCHASE_DATE_DEFAULT_ == null ? purchaseDate != null : !PURCHASE_DATE_DEFAULT_.equals(purchaseDate);
+      case PURCHASE_PRICE:
+        return purchasePrice != PURCHASE_PRICE_DEFAULT_;
+      case CURRENT_PRICE:
+        return currentPrice != CURRENT_PRICE_DEFAULT_;
+      case COMPANY:
+        return COMPANY_DEFAULT_ == null ? company != null : !COMPANY_DEFAULT_.equals(company);
+      case HIGH_PRICE:
+        return highPrice != HIGH_PRICE_DEFAULT_;
+      case LOW_PRICE:
+        return lowPrice != LOW_PRICE_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(", symbol: ");
+    result.append(symbol);
+    result.append(", quantity: ");
+    result.append(quantity);
+    result.append(", purchaseDate: ");
+    result.append(purchaseDate);
+    result.append(", purchasePrice: ");
+    result.append(purchasePrice);
+    result.append(", currentPrice: ");
+    result.append(currentPrice);
+    result.append(", company: ");
+    result.append(company);
+    result.append(", highPrice: ");
+    result.append(highPrice);
+    result.append(", lowPrice: ");
+    result.append(lowPrice);
+    result.append(')');
+    return result.toString();
+  }
+
+} //StockSummaryImpl

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

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

Added: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/createAccountImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/createAccountImpl.java?view=auto&rev=510143
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/createAccountImpl.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/createAccountImpl.java Wed Feb 21 10:49:44 2007
@@ -0,0 +1,335 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package com.bigbank.account.impl;
+
+import com.bigbank.account.AccountFactory;
+import com.bigbank.account.CustomerProfileData;
+import com.bigbank.account.createAccount;
+
+import commonj.sdo.Type;
+
+import org.apache.tuscany.sdo.impl.DataObjectBase;
+
+/**
+ * <!-- begin-user-doc -->
+ * An implementation of the model object '<em><b>create Account</b></em>'.
+ * <!-- end-user-doc -->
+ * <p>
+ * The following features are implemented:
+ * <ul>
+ *   <li>{@link com.bigbank.account.impl.createAccountImpl#getCustomerProfile <em>Customer Profile</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.createAccountImpl#isCreateSavings <em>Create Savings</em>}</li>
+ *   <li>{@link com.bigbank.account.impl.createAccountImpl#isCreateCheckings <em>Create Checkings</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @generated
+ */
+public class createAccountImpl extends DataObjectBase implements createAccount
+{
+  /**
+   * 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;
+
+  /**
+   * The feature id for the '<em><b>Create Savings</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int CREATE_SAVINGS = 1;
+
+  /**
+   * The feature id for the '<em><b>Create Checkings</b></em>' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */	 
+  public final static int CREATE_CHECKINGS = 2;
+
+  /**
+   * This represents the number of properties for this type.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   * @ordered
+   */
+  
+  public final static int SDO_PROPERTY_COUNT = 3;
+
+  /**
+   * 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;
+  
+  /**
+   * The default value of the '{@link #isCreateSavings() <em>Create Savings</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #isCreateSavings()
+   * @generated
+   * @ordered
+   */
+  protected static final boolean CREATE_SAVINGS_DEFAULT_ = false;
+
+  /**
+   * The cached value of the '{@link #isCreateSavings() <em>Create Savings</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #isCreateSavings()
+   * @generated
+   * @ordered
+   */
+  protected boolean createSavings = CREATE_SAVINGS_DEFAULT_;
+
+  /**
+   * The default value of the '{@link #isCreateCheckings() <em>Create Checkings</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #isCreateCheckings()
+   * @generated
+   * @ordered
+   */
+  protected static final boolean CREATE_CHECKINGS_DEFAULT_ = false;
+
+  /**
+   * The cached value of the '{@link #isCreateCheckings() <em>Create Checkings</em>}' attribute.
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @see #isCreateCheckings()
+   * @generated
+   * @ordered
+   */
+  protected boolean createCheckings = CREATE_CHECKINGS_DEFAULT_;
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public createAccountImpl()
+  {
+    super();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Type getType()
+  {
+    return ((AccountFactoryImpl)AccountFactory.INSTANCE).getcreateAccount();
+  }
+
+  /**
+   * <!-- 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 boolean isCreateSavings()
+  {
+    return createSavings;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setCreateSavings(boolean newCreateSavings)
+  {
+    createSavings = newCreateSavings;
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public boolean isCreateCheckings()
+  {
+    return createCheckings;
+  }
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public void setCreateCheckings(boolean newCreateCheckings)
+  {
+    createCheckings = newCreateCheckings;
+  }
+
+  /**
+   * <!-- 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();
+      case CREATE_SAVINGS:
+        return isCreateSavings() ? Boolean.TRUE : Boolean.FALSE;
+      case CREATE_CHECKINGS:
+        return isCreateCheckings() ? Boolean.TRUE : Boolean.FALSE;
+    }
+    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;
+      case CREATE_SAVINGS:
+        setCreateSavings(((Boolean)newValue).booleanValue());
+        return;
+      case CREATE_CHECKINGS:
+        setCreateCheckings(((Boolean)newValue).booleanValue());
+        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;
+      case CREATE_SAVINGS:
+        setCreateSavings(CREATE_SAVINGS_DEFAULT_);
+        return;
+      case CREATE_CHECKINGS:
+        setCreateCheckings(CREATE_CHECKINGS_DEFAULT_);
+        return;
+    }
+    super.unset(propertyIndex);
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public boolean isSet(int propertyIndex)
+  {
+    switch (propertyIndex)
+    {
+      case CUSTOMER_PROFILE:
+        return customerProfile != null;
+      case CREATE_SAVINGS:
+        return createSavings != CREATE_SAVINGS_DEFAULT_;
+      case CREATE_CHECKINGS:
+        return createCheckings != CREATE_CHECKINGS_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(" (createSavings: ");
+    result.append(createSavings);
+    result.append(", createCheckings: ");
+    result.append(createCheckings);
+    result.append(')');
+    return result.toString();
+  }
+
+} //createAccountImpl

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

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

Added: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/createAccountResponseImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/createAccountResponseImpl.java?view=auto&rev=510143
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/createAccountResponseImpl.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/createAccountResponseImpl.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.createAccountResponse;
+
+import commonj.sdo.Type;
+
+import org.apache.tuscany.sdo.impl.DataObjectBase;
+
+/**
+ * <!-- begin-user-doc -->
+ * An implementation of the model object '<em><b>create Account Response</b></em>'.
+ * <!-- end-user-doc -->
+ * <p>
+ * The following features are implemented:
+ * <ul>
+ *   <li>{@link com.bigbank.account.impl.createAccountResponseImpl#getCustomerProfile <em>Customer Profile</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @generated
+ */
+public class createAccountResponseImpl extends DataObjectBase implements createAccountResponse
+{
+  /**
+   * 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 createAccountResponseImpl()
+  {
+    super();
+  }
+
+  /**
+   * <!-- begin-user-doc -->
+   * <!-- end-user-doc -->
+   * @generated
+   */
+  public Type getType()
+  {
+    return ((AccountFactoryImpl)AccountFactory.INSTANCE).getcreateAccountResponse();
+  }
+
+  /**
+   * <!-- 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);
+  }
+
+} //createAccountResponseImpl

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

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/wsdl/src/main/java/com/bigbank/account/impl/createAccountResponseImpl.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