c549066074a65dea0f1198f4ddc85dea3982d8c3
[profile/tv/apps/dotnet/home.git] / LibTVRefCommonPortable / Utils / IAppControl.cs
1 /*
2  * Copyright (c) 2017 Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.1 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://floralicense.org/license/
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17
18 namespace LibTVRefCommonPortable.Utils
19 {
20     /// <summary>
21     /// A interface for App Control feature
22     /// </summary>
23     public interface IAppControl
24     {
25         /// <summary>
26         /// A method makes the package ID's app to be launched.
27         /// </summary>
28         /// <param name="pkgID">A package ID of the targeted application.</param>
29         void SendLaunchRequest(string pkgID);
30
31         /// <summary>
32         /// A method sends a add pin request App Control to TVApps app.
33         /// </summary>
34         void SendAddAppRequestToApps();
35
36         /// <summary>
37         /// A method sends a pin added notification App control to TVHome app.
38         /// </summary>
39         /// <param name="addedAddID">A app ID of newly added.</param>
40         void SendAppAddedNotificationToHome(string addedAddID);
41     }
42 }