ICharsetDetector.java :  » MVC » nestframework » org » nestframework » core » Java Open Source

Java Open Source » MVC » nestframework 
nestframework » org » nestframework » core » ICharsetDetector.java
package org.nestframework.core;

import javax.servlet.http.HttpServletRequest;

/**
 * Interface for request charset detecting.
 * 
 * @author audin
 *
 */
public interface ICharsetDetector {
  
  /**
   * Detect charset from request.
   * 
   * @param req Http servlet request.
   * @return
   */
  public String detectCharsetFromRequest(HttpServletRequest req);
  
  /**
   * Detec charset from content.
   * 
   * @param content Content.
   * @return
   */
  public String detectCharsetFromContent(String content);
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.