046c63d450a9ec08fc713a9f9363194ca2a66317
[platform/core/security/suspicious-activity-monitor.git] / server / samserver / src / main / java / com / samsung / samserver / service / PolicesUpdateService.java
1 /*
2  * In Samsung Ukraine R&D Center (SRK under a contract between)
3  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
4  * Copyright (C) 2018 Samsung Electronics Co., Ltd. All rights reserved.
5  */
6 package com.samsung.samserver.service;
7
8 import com.samsung.samserver.domain.Device;
9 import com.samsung.samserver.web.rest.service.vm.UIPolicies;
10
11 import java.util.List;
12
13 /**
14  * Service Interface for device update policy.
15  *
16  * @author <A HREF="mailto:m.dalakov@samsung.com">Mykhailo Dalakov</A>
17  * @version 1.0
18  */
19 public interface PolicesUpdateService {
20
21     /**
22      * Update device polices.
23      *
24      * @param device the device
25      */
26     void update(Device device, List<UIPolicies.UIPolicy> policesUpdate);
27
28 }