All Downloads are FREE. Search and download functionalities are using the official Maven repository.

in.succinct.plugins.ecommerce.db.model.order.OrderLineAttribute Maven / Gradle / Ivy

The newest version!
package in.succinct.plugins.ecommerce.db.model.order;

import com.venky.swf.db.annotations.model.EXPORTABLE;
import com.venky.swf.db.model.Model;
@EXPORTABLE(false)

public interface OrderLineAttribute extends Model {
	public long getOrderLineId();
	public void setOrderLineId(long id);
	public OrderLine getOrderLine(); 
	
	public String getName(); 
	public void setName(String name); 
	
	public String getValue(); 
	public void setValue(String value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy