Skip to content

Instantly share code, notes, and snippets.

@ishmaelmakitla
Created May 10, 2016 21:34
Show Gist options
  • Save ishmaelmakitla/486c93df449918b5b23dff04ab70adba to your computer and use it in GitHub Desktop.
Save ishmaelmakitla/486c93df449918b5b23dff04ab70adba to your computer and use it in GitHub Desktop.
public class Item{
String entity_id;
String attribute_set_id;
String type_id;
public Item(){}
public String getEntityId(){return this.entity_id;}
public void setEntityId(String id){this.entity_id = id;}
public String getAttributeSetId(){return this.attribute_set_id;}
public void setAttributeSetId(String setId){this.attribute_set_id = setId;}
public String getTypeId(){return this.type_id;}
public void setTypeId(String typeId){this.type_id = typeId;}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment