Subversion Repositories SmartDukaan

Rev

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

Rev 23898 Rev 23900
Line 42... Line 42...
42
	private RunOnceTasks runOnceTasks;
42
	private RunOnceTasks runOnceTasks;
43
	@Override
43
	@Override
44
	public void run(ApplicationArguments args) throws Exception {
44
	public void run(ApplicationArguments args) throws Exception {
45
		LOGGER.info("Called run method");
45
		LOGGER.info("Called run method");
46
		if(args.containsOption("once")) {
46
		if(args.containsOption("once")) {
47
			runOnceTasks.populateGrnTimestamp();
47
			runOnceTasks.getInvestmentDetails();
48
			System.exit(0);
48
			System.exit(0);
49
		}
49
		}
50
		
50
		
51
	}
51
	}
52
 
52