org.ikasan.flow.configuration.FlowElementPersistentConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ikasan-flow-visitorPattern Show documentation
Show all versions of ikasan-flow-visitorPattern Show documentation
Ikasan EIP Flow implementation based on the Visitor design pattern
package org.ikasan.flow.configuration;
import org.ikasan.spec.flow.FlowElementConfiguration;
public class FlowElementPersistentConfiguration implements FlowElementConfiguration
{
private Boolean captureMetrics = false;
private Boolean snapEvent = false;
@Override
public Boolean getCaptureMetrics()
{
return captureMetrics;
}
@Override
public void setCaptureMetrics(Boolean captureMetrics)
{
this.captureMetrics = captureMetrics;
}
@Override
public Boolean getSnapEvent()
{
return snapEvent;
}
@Override
public void setSnapEvent(Boolean snapEvent)
{
this.snapEvent = snapEvent;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy