You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: userguide/tutorials/plugin_management.adoc
+15-11Lines changed: 15 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ The installation of a plugin occurs through the KPM plugin (which itself relies
54
54
* Set that latest downloaded version as being the default one to start (`isSelectedForStart`)
55
55
* Notify Kill Bill core to update its view of the existing plugins
56
56
57
-
Example of installing the `paypal` plugin with a specified version of `4.0.0`:
57
+
Example of installing the `braintree` plugin with a specified version of `1.0.2`:
58
58
[source,bash]
59
59
----
60
60
curl -v \
@@ -66,11 +66,11 @@ curl -v \
66
66
"nodeCommandProperties": [
67
67
{
68
68
"key": "pluginKey",
69
-
"value": "paypal"
69
+
"value": "braintree"
70
70
},
71
71
{
72
72
"key": "pluginVersion",
73
-
"value": "4.0.0"
73
+
"value": "1.0.2"
74
74
}
75
75
],
76
76
"nodeCommandType": "INSTALL_PLUGIN",
@@ -120,7 +120,7 @@ Starting a plugin occurs purely through Kill Bill (independent of the KPM plugin
120
120
* Start the plugin
121
121
* Update its view of the existing plugins
122
122
123
-
Example of starting the default installed version for the `paypal` plugin:
123
+
Example of starting the default installed version for the `braintree` plugin:
124
124
125
125
[source,bash]
126
126
----
@@ -133,7 +133,7 @@ curl -v \
133
133
"nodeCommandProperties": [
134
134
{
135
135
"key": "pluginKey",
136
-
"value": "paypal"
136
+
"value": "braintree"
137
137
}
138
138
],
139
139
"nodeCommandType": "START_PLUGIN",
@@ -150,7 +150,7 @@ Stopping a plugin occurs purely through Kill Bill (independent of the KPM plugin
150
150
* Unload the classes through the OSGI mechanism
151
151
* Update its view of the existing plugins
152
152
153
-
Example of stopping the running version of the `paypal` plugin:
153
+
Example of stopping the running version of the `braintree` plugin:
154
154
155
155
[source,bash]
156
156
----
@@ -163,7 +163,7 @@ curl -v \
163
163
"nodeCommandProperties": [
164
164
{
165
165
"key": "pluginKey",
166
-
"value": "paypal"
166
+
"value": "braintree"
167
167
}
168
168
],
169
169
"nodeCommandType": "STOP_PLUGIN",
@@ -176,7 +176,7 @@ curl -v \
176
176
177
177
Restarting a plugin consists of first stopping the plugin and then restarting the plugin (therefore unloading previous classes and reloading new ones with a potentially different version).
178
178
179
-
Example of restarting the running version of the `paypal` plugin:
179
+
Example of restarting the running version of the `braintree` plugin:
180
180
181
181
[source,bash]
182
182
----
@@ -189,7 +189,7 @@ curl -v \
189
189
"nodeCommandProperties": [
190
190
{
191
191
"key": "pluginKey",
192
-
"value": "paypal"
192
+
"value": "braintree"
193
193
}
194
194
],
195
195
"nodeCommandType": "RESTART_PLUGIN",
@@ -202,7 +202,7 @@ curl -v \
202
202
203
203
Uninstalling a plugin consists of marking that plugin as being `disabled`. The code remains on the filesystem but Kill Bill will ignore it.
204
204
205
-
Example of uninstalling the `paypal` plugin:
205
+
Example of uninstalling version `1.0.2` of the `braintree` plugin:
0 commit comments