📄 resourceresponseimpl.java
字号:
/*
* 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 MimeResponseImpl
implements 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 + -