refresh: function () {
    this._refreshConstraints();
    return this;
  },
  _refreshConstraints: function () {
    return this.actualizeOptions()._bindConstraints();
  },
  refreshConstraints: function() {
    Utils.warnOnce("Parsley's refreshConstraints is deprecated. Please use refresh");
    return this.refresh();
  },
  
  addConstraint: function (name, requirements, priority, isDomConstraint) {
    if (window.Parsley._validatorRegistry.validators[name]) {
      var constraint = new Constraint(this, name, requirements, priority, isDomConstraint);