Added missing new methods to noop implementation

This commit is contained in:
Mauro Mugnaini 2024-03-25 12:15:10 +01:00
parent 7b5656485b
commit 23ee2a5b73
Signed by: mauro.mugnaini
GPG Key ID: 2440CFD0EB321EA8
1 changed files with 12 additions and 0 deletions

View File

@ -51,6 +51,18 @@ public class NoOpEventPublisherProvider extends OrchestratorEventPublisherProvid
// Nothing to do // Nothing to do
return null; return null;
} }
@Override
public int getLastSendHTTPResponseCode() {
// Nothing to do
return 0;
}
@Override
public int getLastRetrieveHTTPResponseCode() {
// Nothing to do
return 0;
}
}; };
} }