![JAR search and dependency download from the Maven repository](/logo.png)
ch.viascom.hipchat.api.request.models.SendNotification Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hipchat-api Show documentation
Show all versions of hipchat-api Show documentation
A HipChat v2 API full implementation for Java
The newest version!
package ch.viascom.hipchat.api.request.models;
import ch.viascom.hipchat.api.models.Notification;
import ch.viascom.hipchat.api.models.message.MessageColor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.io.Serializable;
/**
* Created by patrickboesch on 20.04.16.
*/
@Data
@NoArgsConstructor
public class SendNotification extends Notification implements Serializable {
public SendNotification(String message, MessageColor color, boolean notify) {
setMessage(message);
setColor(color);
setNotify(notify);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy