Removed TODO markers, copied JavaDoc from the parent class
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@900017
13f79535-47bb-0310-9956-
ffa450edef68
public class XADataSource extends DataSource implements javax.sql.XADataSource {
+ /**
+ * Constructor for reflection only. A default set of pool properties will be created.
+ */
public XADataSource() {
super();
- // TODO Auto-generated constructor stub
}
+ /**
+ * Constructs a DataSource object wrapping a connection
+ * @param poolProperties
+ */
public XADataSource(PoolConfiguration poolProperties) {
super(poolProperties);
- // TODO Auto-generated constructor stub
}
}