Subversion Repositories SmartDukaan

Rev

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

Rev 21666 Rev 21699
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.exception.ProfitMandiBusinessException;
15
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
Line 20... Line 21...
20
 
21
 
21
import io.swagger.annotations.ApiImplicitParam;
22
import io.swagger.annotations.ApiImplicitParam;
22
import io.swagger.annotations.ApiImplicitParams;
23
import io.swagger.annotations.ApiImplicitParams;
23
 
24
 
24
@Controller
25
@Controller
-
 
26
@Transactional
25
public class AddressController {
27
public class AddressController {
26
	
28
	
27
	@Autowired
29
	@Autowired
28
	ResponseSender<?> responseSender;
30
	ResponseSender<?> responseSender;
29
	
31