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

com.jdon.controller.context.application.DemoSessionWrapper Maven / Gradle / Ivy

Go to download

JdonFramework is a java framework that you can use to build your Domain Driven Design + CQRS + EventSource applications with asynchronous concurrency and higher throughput.

There is a newer version: 6.9
Show newest version
package com.jdon.controller.context.application;

import java.util.HashMap;
import java.util.Map;

import com.jdon.controller.context.SessionWrapper;

public class DemoSessionWrapper implements SessionWrapper {
	private Map session = new HashMap();

	public Object getAttribute(String key) {
		return session.get(key);
	}

	public void setAttribute(String key, Object o) {
		session.put(key, o);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy