Advertisement
ainazuu

taskbeanmanagerlocal.java

Nov 28th, 2018
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. package com.awesometodolistaina.model.manager;
  2.  
  3. import java.util.List;
  4.  
  5. import javax.ejb.Local;
  6.  
  7. import com.awesometodolistaina.model.TaskBean;
  8.  
  9. @Local
  10. public interface TaskBeanManagerLocal {
  11.  
  12. void addtask(TaskBean task);
  13. List<TaskBean> getTaskList();
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement