bindings/servicemix-smpp/src/main/java/org/apache/servicemix/smpp/SmppConsumerEndpoint.java [246:347]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getSystemId() {
        return systemId;
    }

    /**
     * <p/>
     * This attribute specifies the system id to use for connecting to the
     * server.<br/>
     * <p/>
     * <i>&nbsp;&nbsp;&nbsp;The default value is <b>null</b></i>
     *
     * @param systemId a <code>String</code> value representing the system id
     */
    public void setSystemId(String systemId) {
        this.systemId = systemId;
    }

    public String getPassword() {
        return password;
    }

    /**
     * <p/>
     * This attribute specifies the password to use for connecting to the
     * server.<br/>
     * <p/>
     * <i>&nbsp;&nbsp;&nbsp;The default value is <b>null</b></i>
     *
     * @param password a <code>String</code> value representing the password
     */
    public void setPassword(String password) {
        this.password = password;
    }
    
    public String getSystemType() {
        return systemType;
    }

    /**
     * <p />
     * This attribute specifies the system type that will be used for connecting to the server. <p />
     * <i/> The default value is <b>cp</b>
     * @param systemType 
     */
    public void setSystemType(String systemType) {
        this.systemType = systemType;
    }

    public SmppMarshalerSupport getMarshaler() {
        return marshaler;
    }

    /**
     * <p>
     * With this method you can specify a marshaler class which provides the
     * logic for converting a sms message into a normalized message. This class
     * has to implement the interface class <code>SmppMarshaler</code>. If you
     * don't specify a marshaler, the <code>DefaultSmppMarshaler</code> will be
     * used.
     * </p>
     *
     * @param marshaler a <code>SmppMarshaler</code> class representing the
     *                  marshaler
     */
    public void setMarshaler(SmppMarshalerSupport marshaler) {
        this.marshaler = marshaler;
    }

    public int getEnquireLinkTimer() {
        return enquireLinkTimer;
    }

    /**
     * <p>
     * This attribute specifies the enquire link timer defining the SMSC time
     * interval.<br/>
     * </p>
     * <i>&nbsp;&nbsp;&nbsp;The default value is <b>50000</b></i>
     *
     * @param enquireLinkTimer a <code>int</code> value representing the enquire
     *                         link timer
     */
    public void setEnquireLinkTimer(int enquireLinkTimer) {
        this.enquireLinkTimer = enquireLinkTimer;
    }

    public int getTransactionTimer() {
        return transactionTimer;
    }

    /**
     * <p>
     * This attribute specifies the transaction timer defining the SMSC timeout.
     * <br/>
     * </p>
     * <i>&nbsp;&nbsp;&nbsp;The default value is <b>100000</b></i>
     *
     * @param transactionTimer a <code>int</code> value representing the
     *                         transaction timer (timeout)
     */
    public void setTransactionTimer(int transactionTimer) {
        this.transactionTimer = transactionTimer;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



bindings/servicemix-smpp/src/main/java/org/apache/servicemix/smpp/SmppProviderEndpoint.java [274:375]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getSystemId() {
        return systemId;
    }

    /**
     * <p/>
     * This attribute specifies the system id to use for connecting to the
     * server.<br/>
     * <p/>
     * <i>&nbsp;&nbsp;&nbsp;The default value is <b>null</b></i>
     *
     * @param systemId a <code>String</code> value representing the system id
     */
    public void setSystemId(String systemId) {
        this.systemId = systemId;
    }

    public String getPassword() {
        return password;
    }

    /**
     * <p/>
     * This attribute specifies the password to use for connecting to the
     * server.<br/>
     * <p/>
     * <i>&nbsp;&nbsp;&nbsp;The default value is <b>null</b></i>
     *
     * @param password a <code>String</code> value representing the password
     */
    public void setPassword(String password) {
        this.password = password;
    }

    public String getSystemType() {
        return systemType;
    }

    /**
     * <p />
     * This attribute specifies the system type that will be used for connecting to the server. <p />
     * <i/> The default value is <b>cp</b>
     * @param systemType 
     */
    public void setSystemType(String systemType) {
        this.systemType = systemType;
    }

    public SmppMarshalerSupport getMarshaler() {
        return marshaler;
    }

    /**
     * <p>
     * With this method you can specify a marshaler class which provides the
     * logic for converting a sms message into a normalized message. This class
     * has to implement the interface class <code>SmppMarshaler</code>. If you
     * don't specify a marshaler, the <code>DefaultSmppMarshaler</code> will be
     * used.
     * </p>
     *
     * @param marshaler a <code>SmppMarshaler</code> class representing the
     *                  marshaler
     */
    public void setMarshaler(SmppMarshalerSupport marshaler) {
        this.marshaler = marshaler;
    }

    public int getEnquireLinkTimer() {
        return enquireLinkTimer;
    }

    /**
     * <p>
     * This attribute specifies the enquire link timer defining the resend time
     * interval.<br/>
     * </p>
     * <i>&nbsp;&nbsp;&nbsp;The default value is <b>50000</b> milliseconds</i>
     *
     * @param enquireLinkTimer a <code>int</code> value representing the enquire
     *                         link timer
     */
    public void setEnquireLinkTimer(int enquireLinkTimer) {
        this.enquireLinkTimer = enquireLinkTimer;
    }

    public int getTransactionTimer() {
        return transactionTimer;
    }

    /**
     * <p>
     * This attribute specifies the transaction timer defining the maximum
     * lifetime of a message.<br/>
     * </p>
     * <i>&nbsp;&nbsp;&nbsp;The default value is <b>100000</b> milliseconds</i>
     *
     * @param transactionTimer a <code>int</code> value representing the
     *                         transaction timer
     */
    public void setTransactionTimer(int transactionTimer) {
        this.transactionTimer = transactionTimer;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



