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

org.springframework.biz.web.servlet.view.XMLResourceView Maven / Gradle / Ivy

There is a newer version: 1.0.7.RELEASE
Show newest version
package org.springframework.biz.web.servlet.view;

import org.springframework.http.MediaType;
import org.springframework.web.servlet.View;

/**
 * {@link View} backed by an Text resource.
 */
public class XMLResourceView extends StaticResourceView {

	public XMLResourceView(String content) {
		super(content, MediaType.APPLICATION_XML_VALUE);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy