added support for Tabular Data Manager notifications
git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portal/social-networking-library@115312 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
d02540a3fa
commit
f539ff2bcb
|
@ -19,11 +19,11 @@
|
|||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER">
|
||||
<classpathentry kind="con" path="com.google.gwt.eclipse.core.GWT_CONTAINER"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6">
|
||||
<attributes>
|
||||
<attribute name="maven.pomderived" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="con" path="com.google.gwt.eclipse.core.GWT_CONTAINER"/>
|
||||
<classpathentry kind="output" path="war/WEB-INF/classes"/>
|
||||
<classpathentry kind="output" path="target/classes"/>
|
||||
</classpath>
|
||||
|
|
9191
.gwt/.gwt-log
9191
.gwt/.gwt-log
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,2 @@
|
|||
eclipse.preferences.version=1
|
||||
warSrcDirIsOutput=false
|
|
@ -1,3 +1,3 @@
|
|||
eclipse.preferences.version=1
|
||||
entryPointModules=
|
||||
filesCopiedToWebInfLib=gwt-servlet.jar
|
||||
filesCopiedToWebInfLib=
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -10,7 +10,7 @@
|
|||
|
||||
<groupId>org.gcube.portal</groupId>
|
||||
<artifactId>social-networking-library</artifactId>
|
||||
<version>1.7.0-SNAPSHOT</version>
|
||||
<version>1.8.0-SNAPSHOT</version>
|
||||
<name>gCube Social Networking Library</name>
|
||||
<description>
|
||||
The gCube Social Networking Library is the 'bridge' between your gCube Applications and the social networking facilities.
|
||||
|
|
|
@ -9,7 +9,18 @@ package org.gcube.portal.databook.shared;
|
|||
* introduced due to urgent matters
|
||||
*/
|
||||
public enum NotificationType {
|
||||
|
||||
/**
|
||||
* use to notify a user he got a Tabular Resource shared
|
||||
*/
|
||||
TDM_TAB_RESOURCE_SHARE,
|
||||
/**
|
||||
* use to notify a user he got a TDM Rule shared
|
||||
*/
|
||||
TDM_RULE_SHARE,
|
||||
/**
|
||||
* use to notify a user he got a TDM Templated shared
|
||||
*/
|
||||
TDM_TEMPLATE_SHARE,
|
||||
/**
|
||||
* use to notify a user he got a workspace folder shared
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue