Subversion Repositories SmartDukaan

Rev

Rev 21734 | 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 String other1;
    private String 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 String getOther1() {
                return other1;
        }
        public void setOther1(String other1) {
                this.other1 = other1;
        }
        public String getOther2() {
                return other2;
        }
        public void setOther2(String other2) {
                this.other2 = other2;
        }
        @Override
        public String toString() {
                return "LineOfBusiness [recharge=" + recharge + ", mobile=" + mobile + ", accessories=" + accessories
                                + ", other1=" + other1 + ", other2=" + other2 + "]";
        }
        
        
}