Here you can find the source of resetURICounter()
public static void resetURICounter()
//package com.java2s; //License from project: LGPL import java.util.concurrent.atomic.AtomicLong; public class Main { private static AtomicLong uriCounter = new AtomicLong(0); /** Resets the URI counter used by {@link #getUniqueURIString()}. */ public static void resetURICounter() { uriCounter.set(0);/* w ww.j a va2 s. c o m*/ } }