Subversion Repositories SmartDukaan

Rev

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

Rev 25259 Rev 25260
Line 26... Line 26...
26
@Component
26
@Component
27
public class WalletServiceImpl implements WalletService {
27
public class WalletServiceImpl implements WalletService {
28
 
28
 
29
	private static final Logger LOGGER = LogManager.getLogger(WalletServiceImpl.class);
29
	private static final Logger LOGGER = LogManager.getLogger(WalletServiceImpl.class);
30
	
30
	
31
	private boolean underMaintainance = true;
31
	private boolean underMaintainance = false;
32
	ProfitMandiBusinessException pbse = new ProfitMandiBusinessException("Wallet", "Wallet", "Wallet is under maintainance, please try after some time");
32
	ProfitMandiBusinessException pbse = new ProfitMandiBusinessException("Wallet", "Wallet", "Wallet is under maintainance, please try after some time");
33
 
33
 
34
	@Autowired
34
	@Autowired
35
	private UserAccountRepository userAccountRepository;
35
	private UserAccountRepository userAccountRepository;
36
 
36