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

com.intellifylearning.models.Alias Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package com.intellifylearning.models;

import org.joda.time.DateTime;

import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;

public class Alias extends BasePayload {

    @SuppressFBWarnings("URF_UNREAD_FIELD")
    private String action = "alias";

    private String from;
    private String to;

    public Alias(String from,
            String to,
            DateTime timestamp,
            Context context,
            Callback callback) {

        super(null, timestamp, context, callback);

        this.from = from;
        this.to = to;
    }

    public String getFrom() {
        return from;
    }

    public void setFrom(String from) {
        this.from = from;
    }

    public String getTo() {
        return to;
    }

    public void setTo(String to) {
        this.to = to;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy