Clover Coverage Report - Impex Parent 1.0.21-SNAPSHOT (Aggregated)
Coverage timestamp: Tue Feb 8 2011 11:33:53 EST
../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
2   27   2   1
0   10   1   2
2     1  
1    
 
  DropMojo       Line # 9 2 0% 2 4 0% 0.0
 
No Tests
 
1    package org.apache.torque.mojo;
2   
3    /**
4    * Authenticates to a database server using credentials with DBA authority and drops a database along with the default
5    * user that was created for accessing that database. See also <code>impex:create</code>
6    *
7    * @goal drop
8    */
 
9    public class DropMojo extends SingleDBACommandMojo {
10   
11    /**
12    * The database command to execute
13    *
14    * @parameter expression="${command}" default-value="DROP"
15    * @required
16    */
17    String command;
18   
 
19  0 toggle public String getCommand() {
20  0 return command;
21    }
22   
 
23  0 toggle public void setCommand(String command) {
24  0 this.command = command;
25    }
26   
27    }