1 37 package com.sun.j2ee.blueprints.opc.purchaseorder.ejb; 38 39 import javax.ejb.*; 40 41 import com.sun.j2ee.blueprints.opc.purchaseorder.*; 42 43 46 47 public interface ActivityLocal extends EJBLocalObject { 48 49 public void setActivityId(String activityId); 50 51 public String getActivityId(); 52 53 public void setName(String name); 54 55 public String getName(); 56 57 public void setPrice(float price); 58 59 public float getPrice(); 60 61 public void setLocation(String location); 62 63 public String getLocation(); 64 65 public void setStartDate(long startDate); 66 67 public long getStartDate(); 68 69 public void setEndDate(long endDate); 70 71 public long getEndDate(); 72 73 public void setHeadCount(int headCount); 74 75 public int getHeadCount(); 76 77 public Activity getDetails(); 78 79 } 80 | Popular Tags |