![JAR search and dependency download from the Maven repository](/logo.png)
com.labs64.netlicensing.domain.entity.Notification Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netlicensing-client Show documentation
Show all versions of netlicensing-client Show documentation
Java wrapper for Labs64 NetLicensing RESTful API
package com.labs64.netlicensing.domain.entity;
import java.util.Set;
import com.labs64.netlicensing.domain.vo.Event;
import com.labs64.netlicensing.domain.vo.NotificationProtocol;
public interface Notification extends BaseEntity {
String getName();
void setName(String name);
Set getEvents();
void setEvents(Set events);
void addEvent(final Event event);
NotificationProtocol getProtocol();
void setProtocol(NotificationProtocol notificationProtocol);
String getPayload();
void setPayload(String payload);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy