Subversion Repositories SmartDukaan

Rev

Rev 2768 | Rev 6522 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2768 Rev 2838
Line 10... Line 10...
10
/**
10
/**
11
 * @author mandeep
11
 * @author mandeep
12
 * 
12
 * 
13
 * This class represents a Brand.
13
 * This class represents a Brand.
14
 */
14
 */
15
public class Brand extends ReusableMetaModelComponent {
15
public class SpecialPage extends ReusableMetaModelComponent {
16
    private static final long serialVersionUID = 1L;
16
    private static final long serialVersionUID = 1L;
17
 
17
 
18
    // brand attributes
18
    // special page attributes
19
    private String displayName;
19
    private String displayName;
20
    private String description;
20
    private String description;
21
    private String primeURL;
21
    private String primeURL;
22
    private String saholicURL;
22
    private String saholicURL;
23
    private String searchQuery;
23
    private String searchQuery;
Line 25... Line 25...
25
 
25
 
26
    // Solr-search related fields
26
    // Solr-search related fields
27
    private String metaKeywords;
27
    private String metaKeywords;
28
    private String metaDescription;
28
    private String metaDescription;
29
 
29
 
30
    // Service centre related fields
30
    // Service centre related fields - meaningful only for brand pages
31
    private List<Long>          serviceCenterIds;
31
    private List<Long>          serviceCenterIds;
32
    private List<ServiceCentre> serviceCenters;
32
    private List<ServiceCentre> serviceCenters;
33
 
33
 
34
    public Brand(long id, String displayName) {
34
    public SpecialPage(long id, String displayName) {
35
        super(id);
35
        super(id);
36
        this.displayName = displayName;
36
        this.displayName = displayName;
37
    }
37
    }
38
 
38
 
39
    public String getDisplayName() {
39
    public String getDisplayName() {