public void execute() throws BuildException {
    super.execute();

    int status =
        this.execute(
            this.getSessionName(),
            this.getSessionsFile(),
            this.getUrl(),
            this.getDriverClass(),
            this.getUser(),
            this.getPassword());

    if (status == 0) {
      if (this.property != null) this.getProject().setNewProperty(this.property, "true");
    }
  }