import com.google.web.bindery.requestfactory.shared.EntityProxy;
import com.google.web.bindery.requestfactory.shared.ProxyFor;

import OrganizationEntityParam.DataType;

@ProxyFor(value=OrganizationEntityParam.class /*, locator=BaseEntityLocator.class*/)
public interface OrganizationEntityParamProxy extends EntityProxy {

	String getName();
	OrganizationEntityTypeProxy getOrganizationEntityType();
	boolean isMandatory();
	DataType getDataType();
	
	void setName(String name);
	void setOrganizationEntityType(OrganizationEntityTypeProxy type);
	void setMandatory(boolean mandatory);
	void setDataType(DataType dataType);
	
}
