Interface StubLifecycleListener
-
- All Superinterfaces:
Extension
- All Known Implementing Classes:
ResponseTemplateTransformer
public interface StubLifecycleListener extends Extension
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidafterStubCreated(StubMapping stub)voidafterStubEdited(StubMapping oldStub, StubMapping newStub)voidafterStubRemoved(StubMapping stub)voidafterStubsReset()voidbeforeStubCreated(StubMapping stub)voidbeforeStubEdited(StubMapping oldStub, StubMapping newStub)voidbeforeStubRemoved(StubMapping stub)voidbeforeStubsReset()
-
-
-
Method Detail
-
beforeStubCreated
void beforeStubCreated(StubMapping stub)
-
afterStubCreated
void afterStubCreated(StubMapping stub)
-
beforeStubEdited
void beforeStubEdited(StubMapping oldStub, StubMapping newStub)
-
afterStubEdited
void afterStubEdited(StubMapping oldStub, StubMapping newStub)
-
beforeStubRemoved
void beforeStubRemoved(StubMapping stub)
-
afterStubRemoved
void afterStubRemoved(StubMapping stub)
-
beforeStubsReset
void beforeStubsReset()
-
afterStubsReset
void afterStubsReset()
-
-