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

com.ibm.commons.runtime.impl.app.ContextStandalone Maven / Gradle / Ivy

There is a newer version: 1.1.12.20161007-1200
Show newest version
/*
 * © Copyright IBM Corp. 2012
 * 
 * Licensed 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 com.ibm.commons.runtime.impl.app;

import java.io.IOException;
import java.util.HashMap;
import java.util.Map;

import com.ibm.commons.runtime.Application;
import com.ibm.commons.runtime.impl.AbstractContext;
import com.ibm.commons.util.StringUtil;

/**
 * @author Mark Wallace
 * @date 6 Dec 2012
 */
public class ContextStandalone extends AbstractContext {

	/**
	 * @param application
	 * @param request
	 * @param response
	 */
	public ContextStandalone(Application application, Object request, Object response) {
		super(application, request, response);
	}

	/*
	 * (non-Javadoc)
	 * @see com.ibm.commons.runtime.Context#getCurrentUserId()
	 */
	@Override
	public String getCurrentUserId() {
		return ANONYMOUS;
	}

	/*
	 * (non-Javadoc)
	 * @see com.ibm.commons.runtime.Context#sendRedirect(java.lang.String)
	 */
	@Override
	public void sendRedirect(String redirectUrl) throws IOException {
		// TODO Auto-generated method stub

	}

	/*
	 * (non-Javadoc)
	 * @see com.ibm.commons.runtime.Context#encodeUrl(java.lang.String)
	 */
	@Override
	public String encodeUrl(String url) {
		return url;
	}

	/*
	 * (non-Javadoc)
	 * @see com.ibm.commons.runtime.Context#createSessionMap()
	 */
	@Override
	protected Map createSessionMap() {
		return new HashMap();
	}

	/*
	 * (non-Javadoc)
	 * @see com.ibm.commons.runtime.Context#createRequestMap()
	 */
	@Override
	protected Map createRequestMap() {
		return new HashMap();
	}

	/*
	 * (non-Javadoc)
	 * @see com.ibm.commons.runtime.Context#createRequestParameterMap()
	 */
	@Override
	protected Map createRequestParameterMap() {
		return new HashMap();
	}

	/*
	 * (non-Javadoc)
	 * @see com.ibm.commons.runtime.Context#createRequestCookieMap()
	 */
	@Override
	protected Map createRequestCookieMap() {
		return new HashMap();
	}

	@Override
	public String getProperty(String propertyName) {
		String property = System.getProperty(propertyName);
		return StringUtil.isEmpty(property)?getProperty(propertyName,null):property;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy