/** * The MIT License * * Copyright (c) 2010-2011 Sonatype, Inc. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package org.hudsonci.service.internal; import org.kohsuke.stapler.StaplerRequest; import org.kohsuke.stapler.StaplerResponse; import org.kohsuke.stapler.export.Flavor; import javax.servlet.ServletException; import javax.servlet.ServletOutputStream; import javax.servlet.http.Cookie; import javax.servlet.http.HttpServletRequest; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.io.PrintWriter; import java.io.Writer; import java.net.URL; import java.util.Locale; /** * A dummy {@link StaplerResponse}. * * @author <a href="mailto:jason@planet57.com">Jason Dillon</a> * @since 2.1.0 */ public class DummyStaplerResponse implements StaplerResponse { public static final DummyStaplerResponse INSTANCE = new DummyStaplerResponse(); public void forward(Object it, String url, StaplerRequest request) throws ServletException, IOException { } public void forwardToPreviousPage(StaplerRequest request) throws ServletException, IOException { } public void sendRedirect2(String url) throws IOException { } public void serveFile(StaplerRequest request, URL res) throws ServletException, IOException { } public void serveFile(StaplerRequest request, URL res, long expiration) throws ServletException, IOException { } public void serveLocalizedFile(StaplerRequest request, URL res) throws ServletException, IOException { } public void serveLocalizedFile(StaplerRequest request, URL res, long expiration) throws ServletException, IOException { } public void serveFile(StaplerRequest req, InputStream data, long lastModified, long expiration, long contentLength, String fileName) throws ServletException, IOException { } public void serveFile(StaplerRequest req, InputStream data, long lastModified, long expiration, int contentLength, String fileName) throws ServletException, IOException { } public void serveFile(StaplerRequest req, InputStream data, long lastModified, long contentLength, String fileName) throws ServletException, IOException { } public void serveFile(StaplerRequest req, InputStream data, long lastModified, int contentLength, String fileName) throws ServletException, IOException { } public void serveExposedBean(StaplerRequest req, Object exposedBean, Flavor flavor) throws ServletException, IOException { } public OutputStream getCompressedOutputStream(HttpServletRequest req) throws IOException { return null; } public Writer getCompressedWriter(HttpServletRequest req) throws IOException { return null; } public int reverseProxyTo(URL url, StaplerRequest req) throws IOException { return 0; } public void addCookie(Cookie cookie) { } public boolean containsHeader(String name) { return false; } public String encodeURL(String url) { return null; } public String encodeRedirectURL(String url) { return null; } public String encodeUrl(String url) { return null; } public String encodeRedirectUrl(String url) { return null; } public void sendError(int sc, String msg) throws IOException { } public void sendError(int sc) throws IOException { } public void sendRedirect(String location) throws IOException { } public void setDateHeader(String name, long date) { } public void addDateHeader(String name, long date) { } public void setHeader(String name, String value) { } public void addHeader(String name, String value) { } public void setIntHeader(String name, int value) { } public void addIntHeader(String name, int value) { } public void setStatus(int sc) { } public void setStatus(int sc, String sm) { } public String getCharacterEncoding() { return null; } public String getContentType() { return null; } public ServletOutputStream getOutputStream() throws IOException { return null; } public PrintWriter getWriter() throws IOException { return null; } public void setCharacterEncoding(String charset) { } public void setContentLength(int len) { } public void setContentType(String type) { } public void setBufferSize(int size) { } public int getBufferSize() { return 0; } public void flushBuffer() throws IOException { } public void resetBuffer() { } public boolean isCommitted() { return false; } public void reset() { } public void setLocale(Locale loc) { } public Locale getLocale() { return null; } }