/** * Copyright (c) 2010-2016 by the respective copyright holders. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html */ package org.openhab.binding.freeswitch.internal; /** * Freeswitch bindings have 3 different types: 'ACITVE' will bind to call * life cycle events, 'MESSAGE_WAITING' will bind to voice mail and message * waiting indicator events (MWI), 'CMD_API' will bind items to api command * events which allow api control over a Freeswitch server. * * @author Dan Cunningham * @since 1.4.0 */ public enum FreeswitchBindingType { ACTIVE("active"), MESSAGE_WAITING("message_waiting"), CMD_API("api"); private String label; private FreeswitchBindingType(String label) { this.label = label; } public static FreeswitchBindingType fromString(String bindingType) { if ("".equals(bindingType)) { return null; } for (FreeswitchBindingType type : FreeswitchBindingType.values()) { if (type.label.equals(bindingType)) { return type; } } throw new IllegalArgumentException("invalid bindingType '" + bindingType + "'"); } }