All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ajax4jsf.framework.resource.MimeRenderer Maven / Gradle / Ivy

Go to download

Ajax4jsf is an open source extension to the JavaServer Faces standard that adds AJAX capability to JSF applications without requiring the writing of any JavaScript.

The newest version!
/**
 * 
 */
package org.ajax4jsf.framework.resource;

import java.io.IOException;
import java.io.InputStream;

import javax.faces.context.FacesContext;

/**
 * @author Nick Belaevski - [email protected]
 * created 20.11.2006
 * 
 */
public class MimeRenderer extends BaseResourceRenderer {
	
	private String contentType = null;
	
	public MimeRenderer() {
		
	}
	
	public MimeRenderer(String contentType) {
		super();
		this.contentType = contentType;
	}

	public String getContentType() {
		return this.contentType;
	}

	public void setContentType(String contentType) {
		this.contentType = contentType;
	}
	
	

	protected String getTag() {
		return null;
	}

	protected String[][] getCommonAttrs() {
		// TODO Auto-generated method stub
		return null;
	}

	protected String getHrefAttr() {
		// TODO Auto-generated method stub
		return null;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy