org.milyn.delivery.sax.terminate.TerminateVisitor Maven / Gradle / Ivy
/*
Milyn - Copyright (C) 2006 - 2010
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License (version 2.1) as published by the Free Software
Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU Lesser General Public License for more details:
http://www.gnu.org/licenses/lgpl.txt
*/
package org.milyn.delivery.sax.terminate;
import java.io.IOException;
import java.util.Set;
import org.milyn.SmooksException;
import org.milyn.cdr.annotation.ConfigParam;
import org.milyn.cdr.annotation.ConfigParam.Use;
import org.milyn.container.ExecutionContext;
import org.milyn.delivery.ordering.Producer;
import org.milyn.delivery.sax.SAXElement;
import org.milyn.delivery.sax.SAXVisitAfter;
import org.milyn.delivery.sax.SAXVisitBefore;
import org.milyn.util.CollectionsUtil;
/**
* Terminate Visitor.
*
* @author [email protected]
*/
public class TerminateVisitor implements SAXVisitBefore, SAXVisitAfter, Producer {
private boolean terminateBefore = false;
/* (non-Javadoc)
* @see org.milyn.delivery.sax.SAXVisitBefore#visitBefore(org.milyn.delivery.sax.SAXElement, org.milyn.container.ExecutionContext)
*/
public void visitBefore(SAXElement element, ExecutionContext executionContext) throws SmooksException, IOException {
if(terminateBefore) {
throw new TerminateException(element, true);
}
}
/* (non-Javadoc)
* @see org.milyn.delivery.sax.SAXVisitAfter#visitAfter(org.milyn.delivery.sax.SAXElement, org.milyn.container.ExecutionContext)
*/
public void visitAfter(SAXElement element, ExecutionContext executionContext) throws SmooksException, IOException {
if(!terminateBefore) {
throw new TerminateException(element, false);
}
}
/**
* @param terminateBefore the terminateBefore to set
*/
@ConfigParam(use = Use.OPTIONAL)
public TerminateVisitor setTerminateBefore(boolean terminateBefore) {
this.terminateBefore = terminateBefore;
return this;
}
/* (non-Javadoc)
* @see org.milyn.delivery.ordering.Producer#getProducts()
*/
public Set extends Object> getProducts() {
// Doesn't actually produce anything. Just using the Producer/Consumer mechanism to
// force this vistor to the top of the visitor apply list.
return CollectionsUtil.toSet();
}
}