com.consol.citrus.CitrusInstanceProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of citrus-base Show documentation
Show all versions of citrus-base Show documentation
Citrus base and default implementation
package com.consol.citrus;
/**
* Citrus instance processor takes part in instance creation process.
*/
@FunctionalInterface
public interface CitrusInstanceProcessor {
/**
* Process Citrus instance after this has been instantiated.
* @param instance
*/
void process(Citrus instance);
}