Package org.corrib.s3b.sscf.manage.sioc

Examples of org.corrib.s3b.sscf.manage.sioc.SiocBookmarks


   
    System.out.println(user+"  "+siocResource+"  "+type);
   
    if(user!=null&&!"".equals(user)&&siocResource!=null&&!"".equals(siocResource)&&type!=null&&!"".equals(type))
    {
      SiocBookmarks b = SiocBookmarks.getInstace(user);
      if(type.equals("site"))
        b.bookmarkSiocData(SIOC.Site, siocResource);
      if(type.equals("forum"))
        b.bookmarkSiocData(SIOC.Forum, siocResource);
      if(type.equals("post"))
        b.bookmarkSiocData(SIOC.Post, siocResource);
     
      response.getWriter().write("OK");
    }
    else
      request.getRequestDispatcher("/siocBkmrkTest.jsp").forward(request, response);
View Full Code Here

TOP

Related Classes of org.corrib.s3b.sscf.manage.sioc.SiocBookmarks

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.