Package ie.omk.smpp.util

Examples of ie.omk.smpp.util.SMPPDate


     *
     * @param d
     *            The date and time the message should be delivered.
     */
    public void setDeliveryTime(Date d) {
        this.deliveryTime = new SMPPDate(d);
    }
View Full Code Here


    /**
     * Set the expiry time of the message. If the message is not delivered by
     * time 'd', it will be cancelled and never delivered to it's destination.
     */
    public void setExpiryTime(Date d) {
        expiryTime = new SMPPDate(d);
    }
View Full Code Here

     *
     * @param d
     *            the date the message was delivered.
     */
    public void setFinalDate(Date d) {
        this.finalDate = new SMPPDate(d);
    }
View Full Code Here

     *
     * @param d
     *            The date and time the message should be delivered.
     */
    public void setDeliveryTime(Date d) {
        this.deliveryTime = new SMPPDate(d);
    }
View Full Code Here

    /**
     * Set the expiry time of the message. If the message is not delivered by
     * time 'd', it will be cancelled and never delivered to it's destination.
     */
    public void setExpiryTime(Date d) {
        expiryTime = new SMPPDate(d);
    }
View Full Code Here

     *
     * @param d
     *            the date the message was delivered.
     */
    public void setFinalDate(Date d) {
        this.finalDate = new SMPPDate(d);
    }
View Full Code Here

TOP

Related Classes of ie.omk.smpp.util.SMPPDate

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.