Package com.alibaba.citrus.webx.handler

Source Code of com.alibaba.citrus.webx.handler.RequestHandlerContext

/*
* Copyright 2010 Alibaba Group Holding Limited.
* All rights reserved.
*
* 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.alibaba.citrus.webx.handler;

import static com.alibaba.citrus.util.ServletUtil.*;

import java.io.IOException;

import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.slf4j.Logger;

import com.alibaba.citrus.util.internal.webpagelite.ServletRequestContext;
import com.alibaba.citrus.webx.ResourceNotFoundException;

/**
* ������ṩ��<code>RequestHandler</code>��ص���������Ϣ��ʹ<code>RequestHandler</code>��
* <code>RequestProcessor</code>����������
*
* @author Michael Zhou
*/
public abstract class RequestHandlerContext extends ServletRequestContext {
    private final String internalBaseURL;

    /**
     * ����context��
     */
    public RequestHandlerContext(HttpServletRequest request, HttpServletResponse response,
                                 ServletContext servletContext, String internalBaseURL, String baseURL,
                                 String resourceName) {
        super(request, response, servletContext, baseURL, resourceName);
        this.internalBaseURL = internalBaseURL + '/';
    }

    /**
     * ȡ�õ�ǰ���õ�<code>RequestHandler</code>����
     */
    public abstract RequestHandler getRequestHandler();

    /**
     * ȡ��logger��
     */
    public abstract Logger getLogger();

    /**
     * ���������Դ�Ҳ���ʱ�����������á���������޸Ĵ���Ϊ��
     */
    @Override
    public void resourceNotFound(String resourceName) throws IOException {
        throw new ResourceNotFoundException("Resource Not Found: " + resourceName);
    }

    /**
     * ȡ�������internalĿ¼��URL��
     */

    public final String getInternalResourceURL(String resourceName) {
        return normalizeURI(internalBaseURL + resourceName);
    }
}
TOP

Related Classes of com.alibaba.citrus.webx.handler.RequestHandlerContext

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.