Rev 21431 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.web.req;public class LineOfBusiness {private boolean recharge;private boolean mobile;private boolean accessories;private boolean other1;private boolean other2;public boolean isRecharge() {return recharge;}public void setRecharge(boolean recharge) {this.recharge = recharge;}public boolean isMobile() {return mobile;}public void setMobile(boolean mobile) {this.mobile = mobile;}public boolean isAccessories() {return accessories;}public void setAccessories(boolean accessories) {this.accessories = accessories;}public boolean isOther1() {return other1;}public void setOther1(boolean other1) {this.other1 = other1;}public boolean isOther2() {return other2;}public void setOther2(boolean other2) {this.other2 = other2;}}