
com.nedap.retail.messages.subscription.Subscription Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of messages Show documentation
Show all versions of messages Show documentation
Client and messages for communicating with the Nedap Retail APIs
package com.nedap.retail.messages.subscription;
import java.io.Serializable;
public class Subscription implements Serializable {
private static final long serialVersionUID = -1754895195431644892L;
public String topic;
public String callback;
public Subscription() {
}
public Subscription(final String topic, final String callback) {
this.topic = topic;
this.callback = callback;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy