Subversion Repositories SmartDukaan

Rev

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

Rev 21529 Rev 21702
Line 5... Line 5...
5
import org.slf4j.Logger;
5
import org.slf4j.Logger;
6
import org.slf4j.LoggerFactory;
6
import org.slf4j.LoggerFactory;
7
import org.springframework.beans.factory.annotation.Autowired;
7
import org.springframework.beans.factory.annotation.Autowired;
8
import org.springframework.http.ResponseEntity;
8
import org.springframework.http.ResponseEntity;
9
import org.springframework.stereotype.Controller;
9
import org.springframework.stereotype.Controller;
-
 
10
import org.springframework.transaction.annotation.Transactional;
10
import org.springframework.web.bind.annotation.RequestMapping;
11
import org.springframework.web.bind.annotation.RequestMapping;
11
import org.springframework.web.bind.annotation.RequestMethod;
12
import org.springframework.web.bind.annotation.RequestMethod;
12
import org.springframework.web.bind.annotation.RequestParam;
13
import org.springframework.web.bind.annotation.RequestParam;
13
 
14
 
14
import com.spice.profitmandi.common.ResponseCodeHolder;
15
import com.spice.profitmandi.common.ResponseCodeHolder;
Line 20... Line 21...
20
/**
21
/**
21
 * @author ashikali
22
 * @author ashikali
22
 *
23
 *
23
 */
24
 */
24
@Controller
25
@Controller
-
 
26
@Transactional
25
public class RoleController {
27
public class RoleController {
26
	
28
	
27
	@Autowired
29
	@Autowired
28
	ResponseSender<?> responseSender;
30
	ResponseSender<?> responseSender;
29
	
31