
org.apache.webbeans.web.lifecycle.test.MockHttpSession Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.webbeans.web.lifecycle.test;
import java.util.Enumeration;
import java.util.concurrent.atomic.AtomicInteger;
import javax.servlet.ServletContext;
import javax.servlet.http.HttpSession;
import javax.servlet.http.HttpSessionContext;
@SuppressWarnings("unchecked")
public class MockHttpSession implements HttpSession
{
private static AtomicInteger id = new AtomicInteger(0);
public Object getAttribute(String arg0)
{
// TODO Auto-generated method stub
return null;
}
public Enumeration getAttributeNames()
{
// TODO Auto-generated method stub
return null;
}
public long getCreationTime()
{
// TODO Auto-generated method stub
return 0;
}
public String getId()
{
return Integer.toString(id.getAndIncrement());
}
public long getLastAccessedTime()
{
// TODO Auto-generated method stub
return 0;
}
public int getMaxInactiveInterval()
{
// TODO Auto-generated method stub
return 0;
}
public ServletContext getServletContext()
{
// TODO Auto-generated method stub
return null;
}
public HttpSessionContext getSessionContext()
{
// TODO Auto-generated method stub
return null;
}
public Object getValue(String arg0)
{
// TODO Auto-generated method stub
return null;
}
public String[] getValueNames()
{
// TODO Auto-generated method stub
return null;
}
public void invalidate()
{
// TODO Auto-generated method stub
}
public boolean isNew()
{
// TODO Auto-generated method stub
return false;
}
public void putValue(String arg0, Object arg1)
{
// TODO Auto-generated method stub
}
public void removeAttribute(String arg0)
{
// TODO Auto-generated method stub
}
public void removeValue(String arg0)
{
// TODO Auto-generated method stub
}
public void setAttribute(String arg0, Object arg1)
{
// TODO Auto-generated method stub
}
public void setMaxInactiveInterval(int arg0)
{
// TODO Auto-generated method stub
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy