com.sun.syndication.feed.synd.impl.URINormalizer Maven / Gradle / Ivy
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