package com.ikea.shared.products.model;

public class RetailItemCommAttachment
{
  private String AttachmentType;
  private String AttachmentUrl;
  private String SortNo;

  public String getAttachmentType()
  {
    return this.AttachmentType;
  }

  public String getAttachmentUrl()
  {
    return "http://www.ikea.com" + this.AttachmentUrl;
  }

  public String getSortNo()
  {
    return this.SortNo;
  }

  public void setSortNo(String paramString)
  {
    this.SortNo = paramString;
  }

  public String toString()
  {
    return "RetailItemCommAttachment [AttachmentType=" + this.AttachmentType + ", AttachmentUrl=" + this.AttachmentUrl + ", SortNo=" + this.SortNo + "]";
  }
}

/* Location:           C:\Documents and Settings\Cesar Cabello Cea\Mis documentos\Downloads\apk-downloader\com.ikea.kompis-6_dex2jar.jar
 * Qualified Name:     com.ikea.shared.products.model.RetailItemCommAttachment
 * JD-Core Version:    0.6.2
 */