fix for bug #712 and assigning the wrong username found in session
git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portlets/admin/vre-deploy@119481 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
2ea2e947df
commit
2cc37e0b52
1
pom.xml
1
pom.xml
|
@ -60,6 +60,7 @@
|
|||
<dependency>
|
||||
<groupId>org.gcube.applicationsupportlayer</groupId>
|
||||
<artifactId>aslvre</artifactId>
|
||||
<version>[5.2.0-SNAPSHOT,)</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
|
|
@ -771,9 +771,9 @@ public class VREDeployerServiceImpl extends RemoteServiceServlet implements Vre
|
|||
String subject = "Definition approved and deployed";
|
||||
String body = "Dear "+userDesigner.getFirstname()+", \n\n" + userManager.getFullname() + " has approved the deployment of the group you requested: " + name +".";
|
||||
body+=".\n\nThis group has been deployed successfully and is already available for you on this portal. Please, check your list.";
|
||||
workspace.getWorkspaceMessageManager().sendMessageToPortalLogins(subject, body, new ArrayList<String>(), toSend);
|
||||
String messageId = workspace.getWorkspaceMessageManager().sendMessageToPortalLogins(subject, body, new ArrayList<String>(), toSend);
|
||||
NotificationsManager nnm = new ApplicationNotificationsManager(getASLSession());
|
||||
if (nnm.notifyMessageReceived(designer, subject))
|
||||
if (nnm.notifyMessageReceived(designer, messageId, subject, body))
|
||||
log.trace("Sending Definition create notification: " + subject + " OK");
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
|
|
Loading…
Reference in New Issue