if (ruleList == null) {
throw new ProtocolException("ruleList cannot be null");
}
try {
TaxRulesType taxRules = _objectFact.createDefaultTaxTableTaxRulesType();
List taxRuleList = taxRules.getDefaultTaxRule();
for (int i = 0; i < ruleList.size(); i++) {
taxRuleList.add(ruleList.get(i));
}
DefaultTaxTable taxTable = _objectFact.createDefaultTaxTable();