Subversion Repositories SmartDukaan

Rev

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

Rev 26548 Rev 26605
Line 38... Line 38...
38
 
38
 
39
	@Autowired
39
	@Autowired
40
	protected void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
40
	protected void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
41
		auth.inMemoryAuthentication().withUser("hdfcuser").password("sd123$%^aGg").roles("hdfc").and()
41
		auth.inMemoryAuthentication().withUser("hdfcuser").password("sd123$%^aGg").roles("hdfc").and()
42
				.withUser("hdfctestuser").password("test").roles("hdfctest").and()
42
				.withUser("hdfctestuser").password("test").roles("hdfctest").and()
43
				.withUser("spicemoney").password("spicemoney").roles("spicemoney");
43
				.withUser("spicemoney").password("$SMT123MONEY").roles("spicemoney");
44
	}
44
	}
45
 
45
 
46
}
46
}