Subversion Repositories SmartDukaan

Rev

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

Rev 8982 Rev 11526
Line 16... Line 16...
16
  AMAZON(3),
16
  AMAZON(3),
17
  HOMESHOP18(4),
17
  HOMESHOP18(4),
18
  NAAPTOL(5),
18
  NAAPTOL(5),
19
  EBAY(6),
19
  EBAY(6),
20
  SNAPDEAL(7),
20
  SNAPDEAL(7),
21
  FLIPKART(8);
21
  FLIPKART(8),
-
 
22
  MOBILESITE(9);
22
 
23
 
23
  private final int value;
24
  private final int value;
24
 
25
 
25
  private OrderSource(int value) {
26
  private OrderSource(int value) {
26
    this.value = value;
27
    this.value = value;
Line 53... Line 54...
53
        return EBAY;
54
        return EBAY;
54
      case 7:
55
      case 7:
55
        return SNAPDEAL;
56
        return SNAPDEAL;
56
      case 8:
57
      case 8:
57
        return FLIPKART;
58
        return FLIPKART;
-
 
59
      case 9:
-
 
60
        return MOBILESITE;
58
      default:
61
      default:
59
        return null;
62
        return null;
60
    }
63
    }
61
  }
64
  }
62
}
65
}