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

model.SignalSubscriber Maven / Gradle / Ivy

There is a newer version: 1.3.9
Show newest version
package model;

public class SignalSubscriber {

    private boolean pushed;
    private boolean owner;
    private String subscriberName;
    private Long userId;
    private Long timestamp;

    public boolean isPushed() {
        return pushed;
    }

    public void setPushed(boolean pushed) {
        this.pushed = pushed;
    }

    public boolean isOwner() {
        return owner;
    }

    public void setOwner(boolean owner) {
        this.owner = owner;
    }

    public String getSubscriberName() {
        return subscriberName;
    }

    public void setSubscriberName(String subscriberName) {
        this.subscriberName = subscriberName;
    }

    public Long getUserId() {
        return userId;
    }

    public void setUserId(Long userId) {
        this.userId = userId;
    }

    public Long getTimestamp() {
        return timestamp;
    }

    public void setTimestamp(Long timestamp) {
        this.timestamp = timestamp;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy