Subversion Repositories SmartDukaan

Rev

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

Rev 11526 Rev 12580
Line 17... Line 17...
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
  MOBILESITE(9),
-
 
23
  JUNGLEE(10);
23
 
24
 
24
  private final int value;
25
  private final int value;
25
 
26
 
26
  private OrderSource(int value) {
27
  private OrderSource(int value) {
27
    this.value = value;
28
    this.value = value;
Line 56... Line 57...
56
        return SNAPDEAL;
57
        return SNAPDEAL;
57
      case 8:
58
      case 8:
58
        return FLIPKART;
59
        return FLIPKART;
59
      case 9:
60
      case 9:
60
        return MOBILESITE;
61
        return MOBILESITE;
-
 
62
      case 10:
-
 
63
        return JUNGLEE;
61
      default:
64
      default:
62
        return null;
65
        return null;
63
    }
66
    }
64
  }
67
  }
65
}
68
}