blob: 3a7704bf64593df274d13174ffe1bfb1d4b5673a [file] [log] [blame]
/*
* 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.ki.web.servlet;
import javax.servlet.ServletContext;
/**
* TODO - class javadoc
*
* @author Les Hazlewood
* @since 0.2
*/
public class ServletContextSupport {
//TODO - complete JavaDoc
private ServletContext servletContext = null;
public ServletContext getServletContext() {
return servletContext;
}
public void setServletContext(ServletContext servletContext) {
this.servletContext = servletContext;
}
protected String getContextInitParam(String paramName) {
return getServletContext().getInitParameter(paramName);
}
private ServletContext getServletContextNullCheck() {
ServletContext servletContext = getServletContext();
if (servletContext == null) {
String msg = "ServletContext property must be set via the setServletContext method.";
throw new IllegalStateException(msg);
}
return servletContext;
}
protected void setAttribute(String key, Object value) {
getServletContextNullCheck().setAttribute(key, value);
}
protected Object getAttribute(String key) {
return getServletContextNullCheck().getAttribute(key);
}
protected void removeAttribute(String key) {
getServletContextNullCheck().removeAttribute(key);
}
protected void bind(String name, String key, Object value) {
if (value == null) {
throw new IllegalArgumentException(name + " argument cannot be null.");
}
if (getAttribute(key) != null) {
String msg = name + " already bound to ServletContext. Please check your configuration to ensure " +
"you don't have mutliple SecurityManager Loaders configured (listener, servlet, etc).";
throw new IllegalStateException(msg);
}
setAttribute(key, value);
}
}