All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cloudhopper.smpp.transcoder.DefaultPduTranscoderContext Maven / Gradle / Ivy

Go to download

Efficient, scalable, and flexible Java implementation of the Short Messaging Peer to Peer Protocol (SMPP)

There is a newer version: 5.1.0-113
Show newest version
package com.cloudhopper.smpp.transcoder;

/*
 * #%L
 * ch-smpp
 * %%
 * Copyright (C) 2009 - 2015 Cloudhopper by Twitter
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */

import com.cloudhopper.smpp.SmppConstants;

/**
 * Provides a default context for a PduTranscoder by looking everything up
 * using SMPP constants or default settings.  An "override" context can be
 * supplied in the constructor.  By default, this context will then attempt
 * to call the overridden context and any null value returned will then be
 * looked up using standard rules.
 * 
 * @author joelauer (twitter: @jjlauer or http://twitter.com/jjlauer)
 */
public class DefaultPduTranscoderContext implements PduTranscoderContext {

    private final PduTranscoderContext overrideContext;

    public DefaultPduTranscoderContext() {
        this(null);
    }

    public DefaultPduTranscoderContext(PduTranscoderContext overrideContext) {
        this.overrideContext = overrideContext;
    }
    
    @Override
    public String lookupResultMessage(int commandStatus) {
        String resultMessage = null;
        if (overrideContext != null) {
            resultMessage = overrideContext.lookupResultMessage(commandStatus);
        }
        if (resultMessage == null) {
            resultMessage = SmppConstants.STATUS_MESSAGE_MAP.get(new Integer(commandStatus));
        }
        return resultMessage;
    }

    @Override
    public String lookupTlvTagName(short tag) {
        String tagName = null;
        if (overrideContext != null) {
            tagName = overrideContext.lookupTlvTagName(tag);
        }
        if (tagName == null) {
            tagName = SmppConstants.TAG_NAME_MAP.get(new Short(tag));
        }
        return tagName;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy