com.google.code.plsqlmaven.xdb.XdbMojo Maven / Gradle / Ivy
The newest version!
//
// Generated stub from file:/Users/andrea/Progetti/oss/googlecode/plsqlmaven/svn/trunk/target/checkout/xdb-maven-plugin/src/main/groovy/com/google/code/plsqlmaven/xdb/XdbMojo.groovy
//
package com.google.code.plsqlmaven.xdb;
import java.lang.*;
import java.io.*;
import java.net.*;
import java.util.*;
import groovy.lang.*;
import groovy.util.*;
import java.math.BigDecimal;
import java.math.BigInteger;
import org.codehaus.groovy.maven.mojo.GroovyMojo;
import groovy.sql.Sql;
import com.google.code.plsqlmaven.shared.XdbUtils;
/**
* Abstract class for XDB related Mojos
*/
public abstract class XdbMojo
extends GroovyMojo
implements groovy.lang.GroovyObject
{
/**
* Database username.
*
* @since 1.0
* @parameter expression="${username}"
*/
protected java.lang.String username = null;
/**
* Database password.
*
* @since 1.0
* @parameter expression="${password}"
*/
protected java.lang.String password = null;
/**
* Database URL.
*
* @parameter expression="${url}"
* @since 1.0
*/
protected java.lang.String url = null;
/**
* @parameter expression="${project}"
* @required
* @readonly
*/
protected org.apache.maven.project.MavenProject project = null;
/**
* The base path from witch the export should start
*
* @since 1.0
* @parameter expression="${basePath}"
* @required
*/
protected java.lang.String basePath = null;
/**
* A list of comma separated file extensions to
* enable html entity translation
*
* @since 1.0
* @parameter expression="${translateEntities}"
*/
protected java.lang.String translateEntities = null;
/**
* Database connection helper
*/
protected Sql sql = null;
protected XdbUtils xdbUtils = null;
protected java.lang.Object entities = null;
public void disconnectFromDatabase() {
throw new InternalError("Stubbed method");
}
public boolean connectToDatabase() {
throw new InternalError("Stubbed method");
}
/**
* Source directory for XDB files src/main/xdb
*/
public java.lang.String getXdbSourceDirectory() {
throw new InternalError("Stubbed method");
}
public java.lang.String[] getTranslateEntitiesExtensions() {
throw new InternalError("Stubbed method");
}
protected boolean translateEntitiesEnabled(java.lang.Object path) {
throw new InternalError("Stubbed method");
}
protected java.lang.Object removeHtmlEntities(java.lang.Object text) {
throw new InternalError("Stubbed method");
}
protected java.lang.Object recreateHtmlEntities(java.lang.Object text) {
throw new InternalError("Stubbed method");
}
public groovy.lang.MetaClass getMetaClass() {
throw new InternalError("Stubbed method");
}
public void setMetaClass(groovy.lang.MetaClass metaClass) {
throw new InternalError("Stubbed method");
}
public java.lang.Object invokeMethod(java.lang.String name, java.lang.Object args) {
throw new InternalError("Stubbed method");
}
public java.lang.Object getProperty(java.lang.String name) {
throw new InternalError("Stubbed method");
}
public void setProperty(java.lang.String name, java.lang.Object value) {
throw new InternalError("Stubbed method");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy