org.mule.session.NullSessionHandler Maven / Gradle / Ivy
/*
* $Id: NullSessionHandler.java 19191 2010-08-25 21:05:23Z tcarlson $
* --------------------------------------------------------------------------------------
* Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com
*
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.mule.session;
import org.mule.api.MuleException;
import org.mule.api.MuleMessage;
import org.mule.api.MuleSession;
import org.mule.api.transport.SessionHandler;
/**
* A session handler that ignores any session information
*/
public class NullSessionHandler implements SessionHandler
{
public MuleSession retrieveSessionInfoFromMessage(MuleMessage message) throws MuleException
{
return null;
}
/**
* @deprecated Use retrieveSessionInfoFromMessage(MuleMessage message) instead
*/
@Deprecated
public void retrieveSessionInfoFromMessage(MuleMessage message, MuleSession session) throws MuleException
{
retrieveSessionInfoFromMessage(message);
}
public void storeSessionInfoToMessage(MuleSession session, MuleMessage message) throws MuleException
{
// noop
}
/**
* The property name of the session id to use when creating the Mule session. by
* default the property name "ID" will be used. If no property was set on the
* session called "ID" a session id will be automatically generated
*
* @return the property name of the session id that is set on the session
*/
public String getSessionIDKey()
{
return "ID";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy