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

There is a newer version: 2.0.0.RELEASE
Show newest version
package org.apache.shiro.biz.web.servlet.http;

import java.util.Enumeration;

import org.apache.commons.text.StringEscapeUtils;

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 - 2025 Weber Informatics LLC | Privacy Policy