Subversion Repositories SmartDukaan

Rev

Rev 36562 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 36562 Rev 37071
Line 112... Line 112...
112
    public String getBrand() {
112
    public String getBrand() {
113
        return brand;
113
        return brand;
114
    }
114
    }
115
 
115
 
116
    public void setBrand(String brand) {
116
    public void setBrand(String brand) {
117
        this.brand = brand;
117
        this.brand = com.spice.profitmandi.common.util.StringUtils.normalizeWhitespace(brand);
118
    }
118
    }
119
 
119
 
120
    public String getModelNumber() {
120
    public String getModelNumber() {
121
        return modelNumber;
121
        return modelNumber;
122
    }
122
    }
123
 
123
 
124
    public void setModelNumber(String modelNumber) {
124
    public void setModelNumber(String modelNumber) {
125
        this.modelNumber = modelNumber;
125
        this.modelNumber = com.spice.profitmandi.common.util.StringUtils.normalizeWhitespace(modelNumber);
126
    }
126
    }
127
 
127
 
128
    public String getModelName() {
128
    public String getModelName() {
129
        return modelName;
129
        return modelName;
130
    }
130
    }
131
 
131
 
132
    public void setModelName(String modelName) {
132
    public void setModelName(String modelName) {
133
        this.modelName = modelName;
133
        this.modelName = com.spice.profitmandi.common.util.StringUtils.normalizeWhitespace(modelName);
134
    }
134
    }
135
 
135
 
136
    public String getCreatedBy() {
136
    public String getCreatedBy() {
137
        return createdBy;
137
        return createdBy;
138
    }
138
    }