Subversion Repositories SmartDukaan

Rev

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

Rev 21448 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.model.ProfitMandiConstants;
15
import com.spice.profitmandi.common.model.ProfitMandiConstants;
15
import com.spice.profitmandi.dao.repository.PostOfficeRepository;
16
import com.spice.profitmandi.dao.repository.PostOfficeRepository;
16
import com.spice.profitmandi.web.util.ResponseSender;
17
import com.spice.profitmandi.web.util.ResponseSender;
17
 
18
 
18
@Controller
19
@Controller
-
 
20
@Transactional
19
public class PostOfficeController {
21
public class PostOfficeController {
20
	
22
	
21
	@Autowired
23
	@Autowired
22
	ResponseSender<?> responseSender;
24
	ResponseSender<?> responseSender;
23
	
25