Refactoring of Create Client in Posterita

This commit is contained in:
shameem_z 2007-10-29 12:37:13 +00:00
parent a73d56f687
commit 9d90a6c6fa
2 changed files with 8 additions and 5 deletions

View File

@ -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;
}
}

View File

@ -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;
}
}