summaryrefslogtreecommitdiff
path: root/components/dlink_sms/src/dlink_sms_app.erl
blob: 309cf0e68ba56861149bf563cea0a6d136e32acd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
%%
%% Copyright (C) 2014, Jaguar Land Rover
%%
%% This program is licensed under the terms and conditions of the
%% Mozilla Public License, version 2.0.  The full text of the 
%% Mozilla Public License is at https://www.mozilla.org/MPL/2.0/
%%


-module(dlink_sms_app).

-behaviour(application).

%% Application callbacks
-export([start/2,
	 start_phase/3,
	 stop/1]).

%% ===================================================================
%% Application callbacks
%% ===================================================================

start(_StartType, _StartArgs) ->
    dlink_sms_sup:start_link().

start_phase(init, _, _) ->
    dlink_sms_rpc:init_rvi_component();

start_phase(json_rpc, _, _) ->
    dlink_sms_rpc:start_json_server(),
    ok;

start_phase(connection_manager, _, _) ->
    dlink_sms_rpc:start_connection_manager(),
    ok.


stop(_State) ->
    ok.