Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
21557 ashik.ali 1
package com.spice.profitmandi.common.enumuration;
2
 
3
public enum SchemeType {
4
	HTTP("http://"),
5
	HTTPS("https://");
6
	private String value;
7
	private SchemeType(String value) {
8
		this.value = value;
9
	}
10
	public String getValue() {
11
		return value;
12
	}
13
}