Repo created
This commit is contained in:
parent
c7f60b13d1
commit
e465363d01
120 changed files with 5776 additions and 2 deletions
|
|
@ -0,0 +1,24 @@
|
|||
package com.polar.nextcloudservices.Notification;
|
||||
|
||||
import android.app.Notification;
|
||||
import android.os.Bundle;
|
||||
|
||||
import androidx.core.app.NotificationCompat;
|
||||
|
||||
public class NotificationBuilderResult {
|
||||
public NotificationControllerExtData extraData;
|
||||
public NotificationCompat.Builder builder;
|
||||
|
||||
public NotificationBuilderResult(NotificationCompat.Builder builder){
|
||||
this.builder = builder;
|
||||
this.extraData = new NotificationControllerExtData();
|
||||
}
|
||||
|
||||
public Notification getNotification(){
|
||||
return builder.build();
|
||||
}
|
||||
|
||||
public NotificationControllerExtData getExtraData(){
|
||||
return extraData;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue