cn.ipokerface.aps.notification.NotificationHolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apple-pns-java Show documentation
Show all versions of apple-pns-java Show documentation
Apple Push Service Java server..
The newest version!
package cn.ipokerface.aps.notification;
import cn.ipokerface.aps.response.ResponseListener;
/**
* Created by PokerFace
* Create Date 2020-08-23.
* Email: [email protected]
* Version 1.0.0
*
* Description:
*/
public class NotificationHolder {
private Notification notification;
private ResponseListener listener;
public NotificationHolder(Notification notification, ResponseListener listener) {
this.notification = notification;
this.listener = listener;
}
public Notification getNotification() {
return notification;
}
public ResponseListener getListener() {
return listener;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy