/* * Copyright (C) 2010 Teleal GmbH, Switzerland * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation, either version 3 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.teleal.cling.support.connectionmanager; /** * */ public enum ConnectionManagerErrorCode { INCOMPATIBLE_PROTOCOL_INFO(701, "The connection cannot be established because the protocol info parameter is incompatible"), INCOMPATIBLE_DIRECTIONS(702, "The connection cannot be established because the directions of the involved ConnectionManagers (source/sink) are incompatible"), INSUFFICIENT_NETWORK_RESOURCES(703, "The connection cannot be established because there are insufficient network resources"), LOCAL_RESTRICTIONS(704, "The connection cannot be established because of local restrictions in the device"), ACCESS_DENIED(705, "The connection cannot be established because the client is not permitted."), INVALID_CONNECTION_REFERENCE(706, "Not a valid connection established by this service"), NOT_IN_NETWORK(707, "The connection cannot be established because the ConnectionManagers are not part of the same physical network."); private int code; private String description; ConnectionManagerErrorCode(int code, String description) { this.code = code; this.description = description; } public int getCode() { return code; } public String getDescription() { return description; } public static ConnectionManagerErrorCode getByCode(int code) { for (ConnectionManagerErrorCode errorCode : ConnectionManagerErrorCode.values()) { if (errorCode.getCode() == code) return errorCode; } return null; } }