
com.intellifylearning.models.Alias Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of intellisense Show documentation
Show all versions of intellisense Show documentation
IntelliSense Sensor API for Java
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