public static String generateId()

in src/main/java/org/apache/sling/jobs/impl/Utils.java [104:110]


    public static String generateId() {
        try {
            return Utils.tohex(MessageDigest.getInstance("SHA1").digest((Utils.PROCESS_NAME+idCounter.incrementAndGet()).getBytes(UTF8)));
        } catch (NoSuchAlgorithmException nsae) {
            throw new RuntimeException("SHA1 not supported", nsae);
        }
    }