Advertisement
Sharishah97

TaskBeanManagerLocal

Nov 14th, 2018
107
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.awesometodo.model.manager;
  2.  
  3. import java.util.List;
  4.  
  5. import javax.ejb.Local;
  6.  
  7. import com.awesometodo.model.TaskBean;
  8.  
  9.  
  10. @Local
  11. public interface TaskBeanManagerLocal {
  12.  
  13. void addTask(TaskBean taskBean);
  14. List<TaskBean> getTaskList();
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement