Subversion Repositories SmartDukaan

Rev

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

Rev 8488 Rev 8982
Line 15... Line 15...
15
  STORE(2),
15
  STORE(2),
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
 
22
 
22
  private final int value;
23
  private final int value;
23
 
24
 
24
  private OrderSource(int value) {
25
  private OrderSource(int value) {
25
    this.value = value;
26
    this.value = value;
Line 50... Line 51...
50
        return NAAPTOL;
51
        return NAAPTOL;
51
      case 6:
52
      case 6:
52
        return EBAY;
53
        return EBAY;
53
      case 7:
54
      case 7:
54
        return SNAPDEAL;
55
        return SNAPDEAL;
-
 
56
      case 8:
-
 
57
        return FLIPKART;
55
      default:
58
      default:
56
        return null;
59
        return null;
57
    }
60
    }
58
  }
61
  }
59
}
62
}