* @return The ContentNode of the uri
*/
public static ContentNode findContentNode(ServerSessionManager session, String uri) {
// Try to form the uri into an AssetURI class. If it can't return
// log an error and return null;
AssetURI assetURI = AssetURI.uriFactory(uri);
if (assetURI == null) {
logger.warning("Unable to parse uri " + uri);
return null;
}