| Line 464... |
Line 464... |
| 464 |
((expEntity.getModelNumber() != null) ? (" " + StringEscapeUtils.escapeXml(expEntity.getModelNumber())): "");
|
464 |
((expEntity.getModelNumber() != null) ? (" " + StringEscapeUtils.escapeXml(expEntity.getModelNumber())): "");
|
| 465 |
|
465 |
|
| 466 |
entityXMLSnippets.add(this.xmlIndentation[2] + "<Title>" + StringEscapeUtils.escapeXml(title) + "</Title>");
|
466 |
entityXMLSnippets.add(this.xmlIndentation[2] + "<Title>" + StringEscapeUtils.escapeXml(title) + "</Title>");
|
| 467 |
|
467 |
|
| 468 |
//Boost titles for the mobile phones
|
468 |
//Boost titles for the mobile phones
|
| 469 |
if(expEntity.getCategory().getParentCategory().getID() == Utils.MOBILE_PHONES_CATAGOEY){
|
469 |
if(expEntity.getCategory().getParentCategory().getID() != Utils.MOBILE_ACCESSORIES_CATEGORY){
|
| 470 |
entityXMLSnippets.add(this.xmlIndentation[2] + "<Boost>" + 5 + "</Boost>");
|
470 |
entityXMLSnippets.add(this.xmlIndentation[2] + "<Boost>" + 5 + "</Boost>");
|
| 471 |
}else{
|
471 |
}else{
|
| 472 |
entityXMLSnippets.add(this.xmlIndentation[2] + "<Boost>" + 0 + "</Boost>");
|
472 |
entityXMLSnippets.add(this.xmlIndentation[2] + "<Boost>" + 0 + "</Boost>");
|
| 473 |
}
|
473 |
}
|
| 474 |
|
474 |
|