Commit 8cfbc4bf authored by spawar's avatar spawar

Added attrLabel variable for short description integration


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@99828 ce508802-f39f-4f6c-b175-0d175dae99d5
parent e023f19c
......@@ -11,8 +11,9 @@ import java.util.Date;
public class Attribute {
String attrName = ""; //attribCode
String attrValue = ""; //attribId
String attrValue = ""; //descr
String apiKey = "";
String attrLabels = "";//sh_descr
public String getAttrName() {
return attrName;
......@@ -34,6 +35,14 @@ public class Attribute {
this.apiKey = tag;
}
//Changed by Wasim on 14/08/2015 for api key for magento. [END]
//Changed by Samadhan on 04/01/2016 for display description. [START]
public String getAttrLabels() {
return attrLabels;
}
public void setAttrLabels(String attrLabels) {
this.attrLabels = attrLabels;
}
//Changed by Samadhan on 04/01/2016 for display description. [END]
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment