here is the interface, thanks for your help

  | package fr.helmet.bbpp.manager;
  | 
  | import fr.helmet.bbpp.entity.Deal;
  | import fr.helmet.bbpp.entity.Forum;
  | import java.util.*;
  | 
  | public interface ForumManager {
  |     
  |     public List<Forum> getForums();
  |         
  |     public void setForums(List<Forum> Forums);
  | 
  |     public void editForum(Forum serv);
  |     
  |     public String startCreateForum() ;
  |     
  |     public String viewForum(Forum serv) ;
  |     
  |     public void registerForum(Forum forum );
  |     
  |     public void registerFile() ;
  |     
  |     public String updateForum() ;
  |     
  |    public void destroy();      
  |     
  |    public String defineFromUserForum() ;   
  |    
  |    public String defineFromUserForums() ;
  |    
  |    public void nextElement() ;
  |    
  |    public void previousElement();
  |    
  |    public void registerMessage();
  |    
  |    public byte[] getFileByteArray() ;
  | 
  |    public void setFileByteArray(byte[] fileByteArray) ;
  |     
  | }
  | 

cheers


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4120233#4120233

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4120233
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to