blob: cfd4ed1781db11119116b2f99b66cbca51dad0fd [file] [log] [blame]
/*
* 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.myfaces.tobago.internal.webapp;
import org.apache.myfaces.tobago.renderkit.html.HtmlElements;
import org.apache.myfaces.tobago.renderkit.html.HtmlTypes;
import org.apache.myfaces.tobago.renderkit.html.MarkupLanguageAttributes;
import org.apache.myfaces.tobago.webapp.TobagoResponseWriter;
import javax.faces.component.UIComponent;
import javax.faces.context.ResponseWriter;
import java.io.IOException;
import java.io.Writer;
public class TobagoResponseWriterWrapper extends TobagoResponseWriter {
private ResponseWriter responseWriter;
public TobagoResponseWriterWrapper(final ResponseWriter responseWriter) {
this.responseWriter = responseWriter;
}
@Override
public void startElement(final String name, final UIComponent component) throws IOException {
responseWriter.startElement(name, component);
}
@Override
public void startElement(final HtmlElements name) throws IOException {
responseWriter.startElement(name.getValue(), null);
}
@Override
public void endElement(final String name) throws IOException {
responseWriter.endElement(name);
}
@Override
public void endElement(final HtmlElements name) throws IOException {
responseWriter.endElement(name.getValue());
}
@Override
public void write(final String string) throws IOException {
responseWriter.write(string);
}
@Override
public void writeComment(final Object comment) throws IOException {
responseWriter.writeComment(comment);
}
@Override
public ResponseWriter cloneWithWriter(final Writer writer) {
return responseWriter.cloneWithWriter(writer);
}
/**
* @deprecated since 1.0.11
*/
@Override
@Deprecated
public void writeAttribute(final String name, final Object value, final String property) throws IOException {
responseWriter.writeAttribute(name, value, property);
}
/**
* @deprecated since 1.0.11
*/
@Override
@Deprecated
public void writeText(final Object text, final String property) throws IOException {
responseWriter.writeText(text, property);
}
@Override
public void flush() throws IOException {
responseWriter.flush();
}
@Override
public void writeAttribute(final MarkupLanguageAttributes name, final String value, final boolean escape)
throws IOException {
if (value != null) {
responseWriter.writeAttribute(name.getValue(), value, null);
}
}
@Override
public void writeAttribute(final MarkupLanguageAttributes name, final HtmlTypes types)
throws IOException {
responseWriter.writeAttribute(name.getValue(), types.getValue(), null);
}
@Override
public String getContentType() {
return responseWriter.getContentType();
}
@Override
public String getCharacterEncoding() {
return responseWriter.getCharacterEncoding();
}
@Override
public void startDocument() throws IOException {
responseWriter.startDocument();
}
@Override
public void endDocument() throws IOException {
responseWriter.endDocument();
}
@Override
public void writeURIAttribute(final String name, final Object value, final String property) throws IOException {
responseWriter.writeURIAttribute(name, value, property);
}
@Override
public void writeURIAttribute(final MarkupLanguageAttributes name, final String string) throws IOException {
responseWriter.writeURIAttribute(name.getValue(), string, null);
}
@Override
public void writeText(final char[] text, final int off, final int len) throws IOException {
responseWriter.writeText(text, off, len);
}
@Override
public void write(final char[] chars, final int i, final int i1) throws IOException {
responseWriter.write(chars, i, i1);
}
@Override
public void close() throws IOException {
responseWriter.close();
}
}