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

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


                condition = Result.SUCCESS;
                eventCategoryTO.getEvents().add(event);
            } else {
                LOG.debug("Type {}", elements[0]);

                EventCategoryType type;

                if (EventCategoryType.PROPAGATION.toString().equals(elements[0])) {
                    type = EventCategoryType.PROPAGATION;
                } else if (EventCategoryType.SYNCHRONIZATION.toString().equals(elements[0])) {
                    type = EventCategoryType.SYNCHRONIZATION;
View Full Code Here


            if (elements.length == 1) {
                eventCategoryTO.setType(EventCategoryType.CUSTOM);
                condition = Result.SUCCESS;
                eventCategoryTO.getEvents().add(event);
            } else {
                EventCategoryType type;

                if (EventCategoryType.PROPAGATION.toString().equals(elements[0])) {
                    type = EventCategoryType.PROPAGATION;
                } else if (EventCategoryType.SYNCHRONIZATION.toString().equals(elements[0])) {
                    type = EventCategoryType.SYNCHRONIZATION;
View Full Code Here

TOP

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

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.