package at.gv.egiz.eaaf.core.impl.idp.auth.service; import org.apache.commons.lang3.RandomStringUtils; import at.gv.egiz.eaaf.core.impl.idp.auth.services.TicketErrorService; /** * Ticket based error-handling service for jUnit tests. * * @author tlenz * */ public class JunitTicketErrorService extends TicketErrorService { @Override protected String generateSupportTicket() { return RandomStringUtils.randomAlphabetic(10); } }