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

com.premiumminds.webapp.wicket.StringDownloadResource Maven / Gradle / Ivy

/**
 * Copyright (C) 2016 Premium Minds.
 *
 * This file is part of pm-wicket-utils.
 *
 * pm-wicket-utils is free software: you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation, either version 3 of the License, or (at your option) any
 * later version.
 *
 * pm-wicket-utils is distributed in the hope that it will be useful, but WITHOUT ANY
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 * A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 * details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with pm-wicket-utils. If not, see .
 */
package com.premiumminds.webapp.wicket;

import org.apache.wicket.request.resource.AbstractResource;
import org.apache.wicket.request.resource.ContentDisposition;
import org.apache.wicket.util.time.Time;

public abstract class StringDownloadResource extends AbstractResource {
	private static final long serialVersionUID = 7033429559494560378L;
	private String contentType;
	private String filename;
	
	public StringDownloadResource(String contentType, String filename){
		this.contentType = contentType;
		this.filename = filename;
	}
	
	protected abstract String getString();

	@Override
	protected ResourceResponse newResourceResponse(Attributes attributes) {
		ResourceResponse response = new ResourceResponse();
		response.setContentType(contentType);
		response.setContentDisposition(ContentDisposition.ATTACHMENT);
		response.setFileName(filename);
		response.setLastModified(Time.now());
		response.disableCaching();
		response.setWriteCallback(new WriteCallback() {
			
			@Override
			public void writeData(Attributes attributes) {
				attributes.getResponse().write(getString());
			}
		});
		return response;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy