All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lordofthejars.nosqlunit.demo.infinispan.UserManager Maven / Gradle / Ivy

There is a newer version: 1.0.0-rc.5
Show newest version
package com.lordofthejars.nosqlunit.demo.infinispan;

import org.infinispan.api.BasicCache;

public class UserManager {

	private BasicCache cache;
	
	public UserManager(BasicCache cache) {
		this.cache = cache;
	}
	
	public void addUser(User user) {
		this.cache.put(user.getName(), user);
	}
	
	public User getUser(String name) {
		return this.cache.get(name);
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy