Advertisement
Guest User

Untitled

a guest
Oct 7th, 2016
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.31 KB | None | 0 0
  1. @Parcel
  2. public class Shop implements Serializable{
  3. private int shopNo;
  4. private int status;
  5. private String server;
  6. private String db;
  7. private String dbUser;
  8. private String dbPass;
  9. private String companyName;
  10. private String logoFileName;
  11. private String companyWebsite;
  12. private boolean allowAccessProducts;
  13. private boolean allowAccessWishlist;
  14. private boolean allowAccess;
  15. private String nameViewProducts;
  16. private String nameViewWishlist;
  17. private boolean isNew;
  18. private boolean isSelected;
  19.  
  20. public Shop() {
  21.  
  22. }
  23.  
  24. public int getShopNo() {
  25. return shopNo;
  26. }
  27.  
  28. public void setShopNo(int shopNo) {
  29. this.shopNo = shopNo;
  30. }
  31.  
  32. public int getStatus() {
  33. return status;
  34. }
  35.  
  36. public void setStatus(int status) {
  37. this.status = status;
  38. }
  39.  
  40. public String getServer() {
  41. return server;
  42. }
  43.  
  44. public void setServer(String server) {
  45. this.server = server;
  46. }
  47.  
  48. public String getDb() {
  49. return db;
  50. }
  51.  
  52. public void setDb(String db) {
  53. this.db = db;
  54. }
  55.  
  56. public String getDbUser() {
  57. return dbUser;
  58. }
  59.  
  60. public void setDbUser(String dbUser) {
  61. this.dbUser = dbUser;
  62. }
  63.  
  64. public String getDbPass() {
  65. return dbPass;
  66. }
  67.  
  68. public void setDbPass(String dbPass) {
  69. this.dbPass = dbPass;
  70. }
  71.  
  72. public String getCompanyName() {
  73. return companyName;
  74. }
  75.  
  76. public void setCompanyName(String companyName) {
  77. this.companyName = companyName;
  78. }
  79.  
  80. public String getLogoFileName() {
  81. return logoFileName;
  82. }
  83.  
  84. public void setLogoFileName(String logoFileName) {
  85. this.logoFileName = logoFileName;
  86. }
  87.  
  88. public String getCompanyWebsite() {
  89. return companyWebsite;
  90. }
  91.  
  92. public void setCompanyWebsite(String companyWebsite) {
  93. this.companyWebsite = companyWebsite;
  94. }
  95.  
  96. public boolean isAllowAccessProducts() {
  97. return allowAccessProducts;
  98. }
  99.  
  100. public void setAllowAccessProducts(boolean allowAccessProducts) {
  101. this.allowAccessProducts = allowAccessProducts;
  102. }
  103.  
  104. public boolean isAllowAccessWishlist() {
  105. return allowAccessWishlist;
  106. }
  107.  
  108. public void setAllowAccessWishlist(boolean allowAccessWishlist) {
  109. this.allowAccessWishlist = allowAccessWishlist;
  110. }
  111.  
  112. public boolean isAllowAccess() {
  113. return allowAccess;
  114. }
  115.  
  116. public void setAllowAccess(boolean allowAccess) {
  117. this.allowAccess = allowAccess;
  118. }
  119.  
  120. public String getNameViewProducts() {
  121. return nameViewProducts;
  122. }
  123.  
  124. public void setNameViewProducts(String nameViewProducts) {
  125. this.nameViewProducts = nameViewProducts;
  126. }
  127.  
  128. public String getNameViewWishlist() {
  129. return nameViewWishlist;
  130. }
  131.  
  132. public void setNameViewWishlist(String nameViewWishlist) {
  133. this.nameViewWishlist = nameViewWishlist;
  134. }
  135.  
  136. public boolean isNew() {
  137. return isNew;
  138. }
  139.  
  140. public void setNew(boolean aNew) {
  141. isNew = aNew;
  142. }
  143.  
  144. public boolean isSelected() {
  145. return isSelected;
  146. }
  147.  
  148. public void setSelected(boolean selected) {
  149. isSelected = selected;
  150. }
  151. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement