* the registration done.
*/
public static synchronized void register() {
if (! Handler.alreadyRegistered) {
final URLStreamHandler handler = new Handler();
final ProtocolRegistrationStrategy registry =
ProtocolRegistrationBroker.getRegistrationStrategy();
registry.registerProtocolHandler(Handler.PROTOCOL, handler);
Handler.alreadyRegistered = true;
}
}