@@ -65,7 +65,7 @@ public abstract class AbstractXMLDBTask extends Task
65
65
*
66
66
* @param driver the driver
67
67
*/
68
- public void setDriver ( String driver )
68
+ public void setDriver (final String driver )
69
69
{
70
70
this .driver = driver ;
71
71
}
@@ -76,7 +76,7 @@ public void setDriver( String driver )
76
76
*
77
77
* @param password the password
78
78
*/
79
- public void setPassword ( String password )
79
+ public void setPassword (final String password )
80
80
{
81
81
this .password = password ;
82
82
}
@@ -87,7 +87,7 @@ public void setPassword( String password )
87
87
*
88
88
* @param user the user.
89
89
*/
90
- public void setUser ( String user )
90
+ public void setUser (final String user )
91
91
{
92
92
this .user = user ;
93
93
}
@@ -98,7 +98,7 @@ public void setUser( String user )
98
98
*
99
99
* @param uri the URI
100
100
*/
101
- public void setUri ( String uri )
101
+ public void setUri (final String uri )
102
102
{
103
103
this .uri = uri ;
104
104
}
@@ -109,7 +109,7 @@ public void setUri( String uri )
109
109
*
110
110
* @param ssl true to use SSL, false otherwise
111
111
*/
112
- public void setSsl ( boolean ssl )
112
+ public void setSsl (final boolean ssl )
113
113
{
114
114
this .ssl = ssl ;
115
115
}
@@ -120,25 +120,25 @@ public void setSsl( boolean ssl )
120
120
*
121
121
* @param create true to initialise the database, false otherwise.
122
122
*/
123
- public void setInitdb ( boolean create )
123
+ public void setInitdb (final boolean create )
124
124
{
125
125
this .createDatabase = create ;
126
126
}
127
127
128
128
129
- public void setConfiguration ( String config )
129
+ public void setConfiguration (final String config )
130
130
{
131
131
this .configuration = config ;
132
132
}
133
133
134
134
135
- public void setFailonerror ( boolean failonerror )
135
+ public void setFailonerror (final boolean failonerror )
136
136
{
137
137
this .failonerror = failonerror ;
138
138
}
139
139
140
140
141
- public void setPermissions ( String permissions )
141
+ public void setPermissions (final String permissions )
142
142
{
143
143
this .permissions = permissions ;
144
144
}
@@ -177,7 +177,7 @@ protected void registerDatabase() throws BuildException
177
177
}
178
178
179
179
180
- protected final Collection mkcol ( Collection rootCollection , String baseURI , String path , String relPath ) throws XMLDBException
180
+ protected final Collection mkcol (final Collection rootCollection , final String baseURI , String path , final String relPath ) throws XMLDBException
181
181
{
182
182
CollectionManagementService mgtService ;
183
183
Collection current = rootCollection ;
@@ -215,7 +215,7 @@ protected final Collection mkcol( Collection rootCollection, String baseURI, Str
215
215
}
216
216
217
217
218
- protected final void setPermissions ( Resource res ) throws BuildException
218
+ protected final void setPermissions (final Resource res ) throws BuildException
219
219
{
220
220
Collection base = null ;
221
221
UserManagementService service = null ;
@@ -255,7 +255,7 @@ protected final void setPermissions( Resource res ) throws BuildException
255
255
}
256
256
257
257
258
- protected final void setPermissions ( Collection col ) throws BuildException
258
+ protected final void setPermissions (final Collection col ) throws BuildException
259
259
{
260
260
try {
261
261
if ( permissions != null ) {
@@ -274,7 +274,7 @@ protected final void setPermissions( Collection col ) throws BuildException
274
274
}
275
275
276
276
277
- protected final void setPermissions ( Resource res , UserManagementService service ) throws BuildException
277
+ protected final void setPermissions (final Resource res , final UserManagementService service ) throws BuildException
278
278
{
279
279
try {
280
280
if ( permissions != null ) {
0 commit comments