File tree 1 file changed +23
-0
lines changed
1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -60,8 +60,31 @@ For Node.js all these plugins are implemented using the [`cds-plugin`](../node.j
60
60
61
61
> → audit logs are written to Audit Log service in production.
62
62
63
+ ## As Plugin for CAP Java
64
+
65
+ The [ CAP Java plugin technique] ( ../java/plugins ) makes use of _ jar_ -files which are distributed as Maven packages.
66
+ By adding an additional Maven dependency to the project, the plugin automatically adds functionality or extensions to the CDS model.
67
+ For [ Audit Logging V2] ( ../java/auditlog#handler-v2 ) it looks like this:
68
+
69
+ 1 . Add the Maven dependency (in _ srv/pom.xml_ ):
70
+ ``` xml
71
+ <dependency >
72
+ <groupId >com.sap.cds</groupId >
73
+ <artifactId >cds-feature-auditlog-v2</artifactId >
74
+ <scope >runtime</scope >
75
+ </dependency >
76
+ ```
77
+ 2 . Add annotations to your model:
63
78
79
+ ``` cds
80
+ annotate Customer with @PersonalData ...;
81
+ ```
82
+ > → audit logs are written to console in dev mode.
83
+
84
+ 3 . Bind the platform service.
64
85
86
+ > → audit logs are written to SAP Audit Log service.
87
+
65
88
66
89
67
90
## GraphQL Adapter
You can’t perform that action at this time.
0 commit comments