Example usage for org.apache.commons.lang3 RandomStringUtils RandomStringUtils

List of usage examples for org.apache.commons.lang3 RandomStringUtils RandomStringUtils

Introduction

In this page you can find the example usage for org.apache.commons.lang3 RandomStringUtils RandomStringUtils.

Prototype

public RandomStringUtils() 

Source Link

Document

RandomStringUtils instances should NOT be constructed in standard programming.

Usage

From source file:at.stefanproell.PersistentIdentifierMockup.PIGenerator.java

public PIGenerator() {
    this.randomUtil = new RandomStringUtils();
    this.logger = Logger.getLogger(this.getClass().getName());
    this.logger.info("New PIGenerator created");
}