diff --git a/opennms-tools/sms-reflector/protocol/pom.xml b/opennms-tools/sms-reflector/protocol/pom.xml index 52eb5cdbc0ed..80f07489c427 100644 --- a/opennms-tools/sms-reflector/protocol/pom.xml +++ b/opennms-tools/sms-reflector/protocol/pom.xml @@ -3,7 +3,7 @@ org.opennms.features sms-reflector - 1.14.0-SNAPSHOT + 16.0.0-SNAPSHOT 4.0.0 org.opennms.protocols diff --git a/opennms-tools/sms-reflector/sms-service/SmsResponse.java b/opennms-tools/sms-reflector/sms-service/SmsResponse.java deleted file mode 100644 index acb91a5ef213..000000000000 --- a/opennms-tools/sms-reflector/sms-service/SmsResponse.java +++ /dev/null @@ -1,68 +0,0 @@ -/******************************************************************************* - * This file is part of OpenNMS(R). - * - * Copyright (C) 2007-2014 The OpenNMS Group, Inc. - * OpenNMS(R) is Copyright (C) 1999-2014 The OpenNMS Group, Inc. - * - * OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc. - * - * OpenNMS(R) is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as published - * by the Free Software Foundation, either version 3 of the License, - * or (at your option) any later version. - * - * OpenNMS(R) 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 Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with OpenNMS(R). If not, see: - * http://www.gnu.org/licenses/ - * - * For more information contact: - * OpenNMS(R) Licensing - * http://www.opennms.org/ - * http://www.opennms.com/ - *******************************************************************************/ - -package org.opennms.sms.reflector.smsservice; - -import org.smslib.InboundMessage; - -/** - * @author brozow - * - */ -public class SmsResponse extends MobileMsgResponse { - - private InboundMessage m_msg; - - public SmsResponse(InboundMessage msg) { - m_msg = msg; - } - - /** - * @return the originator - */ - public String getOriginator() { - return m_msg.getOriginator(); - } - - /** - * @return the text - */ - public String getText() { - return m_msg.getText(); - } - - /** - * @return - */ - public InboundMessage getMessage() { - return m_msg; - - } - - -} diff --git a/opennms-tools/sms-reflector/sms-service/pom.xml b/opennms-tools/sms-reflector/sms-service/pom.xml index bfdb159be312..58c139d767a1 100644 --- a/opennms-tools/sms-reflector/sms-service/pom.xml +++ b/opennms-tools/sms-reflector/sms-service/pom.xml @@ -89,24 +89,6 @@ org.springframework.osgi spring-osgi-core - - - org.springframework - org.springframework.aop - - - org.springframework - org.springframework.beans - - - org.springframework - org.springframework.context - - - org.springframework - org.springframework.core - - commons-io