Package org.apache.syncope.core.propagation

Examples of org.apache.syncope.core.propagation.PropagationException


            } catch (IllegalArgumentException e) {
                LOG.error("Unexpected execution status found {}", execution.getStatus());
                execStatus = PropagationTaskExecStatus.FAILURE;
            }
            if (task.getResource().isPropagationPrimary() && !execStatus.isSuccessful()) {
                throw new PropagationException(task.getResource().getName(), execution.getMessage());
            }
        }
    }
View Full Code Here


                    LOG.error("Unexpected execution status found {}", execution.getStatus());
                    execStatus = PropagationTaskExecStatus.FAILURE;
                }
                if (task.getResource().isPropagationPrimary() && !execStatus.isSuccessful()) {
                    result = Result.FAILURE;
                    throw new PropagationException(task.getResource().getName(), execution.getMessage());
                }
            }
        } finally {
            notificationManager.createTasks(
                    AuditElements.EventCategoryType.PROPAGATION,
View Full Code Here

                    LOG.error("Unexpected execution status found {}", execution.getStatus());
                    execStatus = PropagationTaskExecStatus.FAILURE;
                }
                if (task.getResource().isPropagationPrimary() && !execStatus.isSuccessful()) {
                    result = Result.FAILURE;
                    throw new PropagationException(task.getResource().getName(), execution.getMessage());
                }
            }
        } finally {
            notificationManager.createTasks(
                    AuditElements.EventCategoryType.PROPAGATION,
View Full Code Here

TOP

Related Classes of org.apache.syncope.core.propagation.PropagationException

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.