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

org.apache.shiro.biz.web.servlet.http.EscapeHtml4Enumeration Maven / Gradle / Ivy

The newest version!
package org.apache.shiro.biz.web.servlet.http;

import org.apache.commons.text.StringEscapeUtils;

import java.util.Enumeration;

public class EscapeHtml4Enumeration implements Enumeration {

	private Enumeration headers;
	
	public EscapeHtml4Enumeration(Enumeration headers){
		this.headers = headers;
	}
	
	@Override
	public boolean hasMoreElements() {
		return headers.hasMoreElements();
	}

	@Override
	public String nextElement() {
		return StringEscapeUtils.escapeHtml4(headers.nextElement());
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy