We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b879a97 commit d4cda3dCopy full SHA for d4cda3d
README.md
@@ -82,9 +82,9 @@ The Controller implements the business logic and describes all the classes neede
82
public class WebServerController implements ResourceController<WebServer> {
83
84
@Override
85
- public boolean deleteResource(CustomService resource, Context<WebServer> context) {
+ public DeleteControl deleteResource(CustomService resource, Context<WebServer> context) {
86
// ... your logic ...
87
- return true;
+ return DeleteControl.DEFAULT_DELETE;
88
}
89
90
// Return the changed resource, so it gets updated. See javadoc for details.
0 commit comments