Subversion Repositories SmartDukaan

Rev

Rev 8616 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8616 Rev 8658
Line 58... Line 58...
58
})
58
})
59
@XmlRootElement(name = "SaholicAPI")
59
@XmlRootElement(name = "SaholicAPI")
60
public class SaholicAPI {
60
public class SaholicAPI {
61
 
61
 
62
    @XmlElement(name = "FeedIdentifier")
62
    @XmlElement(name = "FeedIdentifier")
63
    protected int feedIdentifier;
63
    protected long feedIdentifier;
64
    @XmlElement(name = "CreateDate", required = true)
64
    @XmlElement(name = "CreateDate", required = true)
65
    protected String createDate;
65
    protected String createDate;
66
    @XmlElement(name = "Price")
66
    @XmlElement(name = "Price")
67
    protected List<SaholicAPI.Price> price;
67
    protected List<SaholicAPI.Price> price;
68
 
68
 
69
    /**
69
    /**
70
     * Gets the value of the feedIdentifier property.
70
     * Gets the value of the feedIdentifier property.
71
     * 
71
     * 
72
     */
72
     */
73
    public int getFeedIdentifier() {
73
    public long getFeedIdentifier() {
74
        return feedIdentifier;
74
        return feedIdentifier;
75
    }
75
    }
76
 
76
 
77
    /**
77
    /**
78
     * Sets the value of the feedIdentifier property.
78
     * Sets the value of the feedIdentifier property.
79
     * 
79
     * 
80
     */
80
     */
81
    public void setFeedIdentifier(int value) {
81
    public void setFeedIdentifier(long value) {
82
        this.feedIdentifier = value;
82
        this.feedIdentifier = value;
83
    }
83
    }
84
 
84
 
85
    /**
85
    /**
86
     * Gets the value of the createDate property.
86
     * Gets the value of the createDate property.