
org.distributeme.core.ServerSideCallContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of distributeme-core Show documentation
Show all versions of distributeme-core Show documentation
DistributeMe core functionality
The newest version!
package org.distributeme.core;
import java.util.Map;
/**
* Contains all required infromation in the context of the current call on the server side.
* @author lrosenberg
*/
public class ServerSideCallContext extends AbstractCallContext{
public ServerSideCallContext(String aMethodName, Map,?> transportableCallContext){
super(aMethodName);
setIncomingTransportableCallContext(transportableCallContext);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy