37acfe5311dbef6d2836c046d8a622cfa9fb41b6
[portal.git] / ecomp-portal-BE-os / src / main / java / org / openecomp / portalapp / portal / service / TicketEventServiceImpl.java
1 package org.openecomp.portalapp.portal.service;
2
3 import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties;
4 import org.openecomp.portalsdk.core.util.SystemProperties;
5 import org.springframework.stereotype.Service;
6
7 import com.fasterxml.jackson.databind.JsonNode;
8
9 @Service("ticketService")
10 public class TicketEventServiceImpl implements TicketEventService{
11
12         @Override
13         public String getNotificationHyperLink(JsonNode application, String ticket, String eventSource) {
14                 String hyperlink = SystemProperties.getProperty(EPCommonSystemProperties.EXTERNAL_SYSTEM_NOTIFICATION_URL)+ticket;
15                 return hyperlink;
16         }
17
18 }