added the News manager impl
git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/application-support-layer/applicationSupportLayerSocial@62115 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
3b7bf8c54c
commit
c894286954
|
@ -1,11 +1,29 @@
|
|||
package org.gcube.applicationsupportlayer.social;
|
||||
|
||||
import org.gcube.application.framework.core.session.ASLSession;
|
||||
import org.gcube.common.core.utils.logging.GCUBEClientLog;
|
||||
import org.gcube.portal.databook.server.DatabookStore;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Massimiliano Assante, ISTI-CNR
|
||||
* @version 0.1 Dec 2012
|
||||
*
|
||||
*/
|
||||
public class AslVREAppsUpdateManager implements VREAppsUpdateManager {
|
||||
public class AslNewsManager implements NewsManager {
|
||||
|
||||
GCUBEClientLog log = new GCUBEClientLog(AslNewsManager.class);
|
||||
|
||||
private ASLSession session;
|
||||
private DatabookStore store;
|
||||
/**
|
||||
*
|
||||
* @param session the ASLSession instance
|
||||
*/
|
||||
public AslNewsManager(ASLSession session) {
|
||||
this.session = session;
|
||||
}
|
||||
|
||||
/**
|
||||
* use to share an update from your application
|
||||
*
|
|
@ -7,7 +7,7 @@ package org.gcube.applicationsupportlayer.social;
|
|||
* @version 0.1 Dec 2012
|
||||
*
|
||||
*/
|
||||
public interface VREAppsUpdateManager {
|
||||
public interface NewsManager {
|
||||
/**
|
||||
* use to share an update from your application
|
||||
*
|
Loading…
Reference in New Issue