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

com.sun.syndication.feed.synd.impl.URINormalizer Maven / Gradle / Ivy

There is a newer version: 3.1.0-incubating
Show newest version
package com.sun.syndication.feed.synd.impl;

/**
 * Utility class for normalizing an URI as specified in RFC 2396bis.
 * 

* @author Alejandro Abdelnur */ public class URINormalizer { /** * Normalizes an URI as specified in RFC 2396bis. *

* @param uri to normalize. * @return the normalized value of the given URI, or null if the given URI was null. */ public static String normalize(String uri) { String normalizedUri = null; if (uri!=null) { normalizedUri = uri; //TODO THIS HAS TO BE IMPLEMENTED } return normalizedUri; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy