噶额外噶外骨骼感广泛高热感 就 啊啊

源代码在线查看: itemlocal.java

软件大小: 24382 K
上传用户: w277426078
关键词:
下载地址: 免注册下载 普通下载 VIP

相关代码

				  /*
				   * @author                        : Sujatha
				   * @Version                       : 1.0
				   *
				   * Development Environment        : Oracle9i JDeveloper
				   * Name of the File               : ItemLocal.java
				   * Creation/Modification History  :
				   *
				   * Sujatha   11-Jan-2003      Created
				   *
				   */
				  package oracle.otnsamples.vsm.entities;
				
				  import java.util.Collection;
				
				  import javax.ejb.EJBLocalObject;
				
				  /**
				   * Local interface for Item entity. The interface has getters/setters for the
				   * persistent fields of the entity. Generated by Oracle9i JDeveloper Tool.
				   */
				  public interface ItemLocal extends EJBLocalObject {
				    String getId(  );
				
				    void setId( String newId );
				
				    String getSubCatID(  );
				
				    void setSubCatID( String newSubCatID );
				
				    String getShopID(  );
				
				    void setShopID( String newShopID );
				
				    String getImage(  );
				
				    void setImage( String newImage );
				
				    Collection getItemAttributes(  );
				
				    void setItemAttributes( Collection newItemAttributes );
				
				    Collection getItemDetails(  );
				
				    void setItemDetails( Collection newItemDetails );
				
				    InventoryLocal getInventory(  );
				
				    void setInventory( InventoryLocal newInventory );
				  }
							

相关资源