]> git.basschouten.com Git - openhab-addons.git/blob
a1f4b980d7a1641c93f4cae03a114b2208a4c860
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2022 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License 2.0 which is available at
9  * http://www.eclipse.org/legal/epl-2.0
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.tr064.internal.soap;
14
15 /**
16  * The {@link CallListType} is used for post processing the retrieved call list
17  *
18  * @author Jan N. Klug - Initial contribution
19  */
20 public enum CallListType {
21     MISSED_COUNT("2"),
22     INBOUND_COUNT("1"),
23     REJECTED_COUNT("10"),
24     OUTBOUND_COUNT("3"),
25     JSON_LIST("");
26
27     private final String value;
28
29     CallListType(String value) {
30         this.value = value;
31     }
32
33     public String typeString() {
34         return value;
35     }
36 }