?? resourceresponseimpl.java.svn-base
字號:
/* * 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.pluto.internal.impl;import java.util.Locale;import javax.portlet.ResourceResponse;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import org.apache.pluto.PortletContainer;import org.apache.pluto.PortletWindow;import org.apache.pluto.internal.InternalResourceResponse;import org.apache.pluto.util.ArgumentUtility;import org.apache.pluto.util.StringUtils;public class ResourceResponseImpl extends MimeResponseImplimplements ResourceResponse, InternalResourceResponse { public ResourceResponseImpl(PortletContainer container, PortletWindow portletWindow, HttpServletRequest servletRequest, HttpServletResponse servletResponse) { super(container, portletWindow, servletRequest, servletResponse); } @Override public void setCharacterEncoding(String arg0) { if (super.isIncluded()){ //no operation } else super.setCharacterEncoding(arg0); } @Override public void setContentLength(int arg0) { if (super.isIncluded()){ //no operation } else super.setContentLength(arg0); } @Override public void setLocale(Locale arg0) { if (super.isIncluded()){ //no operation } else super.setLocale(arg0); } @Override public int getBufferSize() { return 0; } @Override public void setContentType(String contentType) throws IllegalArgumentException { if (super.isIncluded()){ //no operation } else{ ArgumentUtility.validateNotNull("contentType", contentType); String mimeType = StringUtils.getMimeTypeWithoutEncoding(contentType); /* if (!isValidContentType(mimeType)) { throw new IllegalArgumentException("Specified content type '" + mimeType + "' is not supported."); } */ getHttpServletResponse().setContentType(mimeType); } } @Override public String getContentType() { return getHttpServletResponse().getContentType(); } public String getCacheability() { return null; } public javax.portlet.PortletURL createRenderURL() throws java.lang.IllegalStateException{ return super.createRenderURL(); } public javax.portlet.PortletURL createActionURL() throws java.lang.IllegalStateException{ return super.createActionURL(); } public javax.portlet.ResourceURL createResourceURL() throws java.lang.IllegalStateException{ return super.createResourceURL(); }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -