Package org.apache.syncope.common.types.AuditElements

Examples of org.apache.syncope.common.types.AuditElements.Category


        String[] splitted = loggerName.split("\\.");
        if (splitted == null || splitted.length < 5) {
            throw new ParseException("Unparsable logger name", 0);
        }

        Category category = Category.valueOf(splitted[2]);
        Enum<?> subcategory = Enum.valueOf(category.getSubCategory(), splitted[3]);
        Result result = Result.valueOf(splitted[4]);

        return new AuditLoggerName(category, subcategory, result);
    }
View Full Code Here

TOP

Related Classes of org.apache.syncope.common.types.AuditElements.Category

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.