From 9d90a6c6fa0aceaaaa6c895df1823c76976493ec Mon Sep 17 00:00:00 2001 From: shameem_z Date: Mon, 29 Oct 2007 12:37:13 +0000 Subject: [PATCH] Refactoring of Create Client in Posterita --- .../org/posterita/beans/ApplicationParametersBean.java | 8 ++++---- posterita/src/main/org/posterita/beans/UDIBean.java | 5 ++++- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/posterita/src/main/org/posterita/beans/ApplicationParametersBean.java b/posterita/src/main/org/posterita/beans/ApplicationParametersBean.java index b362f231ec..5951222de0 100644 --- a/posterita/src/main/org/posterita/beans/ApplicationParametersBean.java +++ b/posterita/src/main/org/posterita/beans/ApplicationParametersBean.java @@ -42,13 +42,13 @@ public class ApplicationParametersBean extends UDIBean this.applicationWebContext = applicationWebContext; } - public String getApplicationType() + public Integer getStoreId() { - return applicationType; + return storeId; } - public void setApplicationType(String applicationType) + public void setStoreId(Integer storeId) { - this.applicationType = applicationType; + this.storeId = storeId; } } diff --git a/posterita/src/main/org/posterita/beans/UDIBean.java b/posterita/src/main/org/posterita/beans/UDIBean.java index 248552763f..e6ed1d9e17 100644 --- a/posterita/src/main/org/posterita/beans/UDIBean.java +++ b/posterita/src/main/org/posterita/beans/UDIBean.java @@ -452,6 +452,7 @@ public class UDIBean protected String fieldName; protected String applicationName; protected String applicationWebContext; + protected Integer storeId; protected Boolean isWebstoreFeatured; protected String brandName; protected String designName; @@ -662,7 +663,7 @@ public class UDIBean protected String paymentNo; protected BigDecimal taxedAmt; protected String trxDate; - + protected Integer creditMemoId; protected String creditMemoNumber; @@ -699,6 +700,7 @@ public class UDIBean protected Integer [] inventoryIds; protected String historyType; + protected String accountingValues; public Boolean getIsActive() { @@ -708,6 +710,7 @@ public class UDIBean { this.isActive = isActive; } + }