(no commit message)
[utils] / test / enterprise / src / main / java / org / wamblee / test / persistence / AbstractDatabaseProvider.java
index 9bfa30f18a25ad41d8f8a7efc9d87896a7f63e90..321a8c1e9464880fd19fb867e914041b5744e8f0 100644 (file)
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.test.persistence;
 
 import java.util.List;
+
 /**
- * Base class for database providers. 
+ * Base class for database providers.
  * 
  * @author Erik Brakkee
  */
 public abstract class AbstractDatabaseProvider implements DatabaseProvider {
 
     /**
-     * @return List of database capabilities. 
+     * @return List of database capabilities.
      */
     protected abstract List<String> getCapabilities();
 
     /**
-     * Standard implementation of the capabalities check. 
+     * Standard implementation of the capabalities check.
      */
     public final boolean supportsCapabilities(String[] aCapabilities) {
         for (String capability : aCapabilities) {