Skip to content

Commit 61c5db0

Browse files
committed
Issue #191 - Improved description.
1 parent 8c718ef commit 61c5db0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1076,7 +1076,7 @@ A custom injector for the admin server SSL listen port is:
10761076

10771077
WebLogic Deploy Tooling supports the use of model filters to manipulate the domain model. The Create Domain, Update Domain, and Deploy Applications Tools apply filters to the model after it is read, before it is validated and applied to the domain. The Discover Domain Tool applies filters to the model after it has been discovered, before the model is validated and written.
10781078

1079-
Model filters are written in Jython, and must be compatible with the version used in the corresponding version of WLST. A filter must implement the method filter_model(model), which accepts as a single argument the domain model as a Jython dictionary. The method should make whatever adjustments are needed to the domain model. Filters can be stored in any directory, as long as they can be accessed by WebLogic Deploy Tooling.
1079+
Model filters are written in Jython, and must be compatible with the version used in the corresponding version of WLST. A filter must implement the method filter_model(model), which accepts as a single argument the domain model as a Jython dictionary. This method can make any adjustments to the domain model that are required. Filters can be stored in any directory, as long as they can be accessed by WebLogic Deploy Tooling.
10801080

10811081
The following filter example (fix-password.py) sets the password for two attributes in the SecurityConfiguration WLST folder.
10821082

@@ -1093,7 +1093,7 @@ def filter_model(model):
10931093

10941094
Model filters are configured by creating a model_filters.json file in the WLSDEPLOY_HOME/lib directory. This file has separate sections for filters to be applied for specific tools.
10951095

1096-
This example deploys two filters for the Create Domain Tool: fix-password.py and no-mail.py, and one filter for the Discover Domain tool.
1096+
This example configures two filters for the Create Domain Tool: fix-password.py and no-mail.py, and one filter for the Discover Domain tool.
10971097

10981098
```json
10991099
{

0 commit comments

Comments
 (0)