package com.ebay.cloud.cms.model.raptor_paas; import com.ebay.cloud.cms.typsafe.entity.GenericCMSEntity; import org.codehaus.jackson.annotate.JsonIgnore; /** * CMS generated entity. * This class is generated by CMS type-safe api model exporter, DON'T modify this class. * */ public class Lock extends GenericCMSEntity { public Lock() { set_type(get_metaclass()); // set_repo("raptor-paas"); } // the getter/setter method public String getName(){ return (String)getFieldValue("name"); } public void setName(String attrVal_name){ setFieldValue("name", attrVal_name); } @JsonIgnore public String get_metaclass(){ return "Lock"; } }