Here you can find the source of getDefaultBaseUri()
public static String getDefaultBaseUri()
//package com.java2s; //License from project: Apache License import java.util.concurrent.atomic.AtomicReference; public class Main { private static final AtomicReference<String> DEFAULT_BASE_URI = new AtomicReference<String>(); /**//from w w w . j av a2 s . c o m * Get the default base uri for resolving qname URIs. * * @return The default base URI. */ public static String getDefaultBaseUri() { return DEFAULT_BASE_URI.get(); } }