Class MobileNotificationService
java.lang.Object
overit.geocallapp.utilities.rs.common.PrivateService
overit.geocallapp.wfm.mobile.core.rs3.notification.MobileNotificationService
@RestController
@RequestMapping("mobile/r3/notifications")
@Resource(logging=true)
public class MobileNotificationService
extends PrivateService
Services to manage notifications on mobile.
- Since:
- 19.0
- GCApi:
- rest
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<DTOMobileNotification> Retrieves the notifications matching the specified filter.
-
Constructor Details
-
MobileNotificationService
public MobileNotificationService()
-
-
Method Details
-
get
@GetMapping(value="{id:[0-9]+}", produces="application/json") public org.springframework.http.ResponseEntity<DTOMobileNotification> get(@PathVariable("id") Long id, @RequestParam(required=false,name="language",defaultValue="user") String language) throws DAValidateException, DAException Retrieves the notifications matching the specified filter.MobileNotificationLoadEvent- Parameters:
id- the required id of the notification- Returns:
- the response containing the required
DTOMobileNotification - Throws:
DAValidateExceptionDAException
-