com.windowsazure.messaging.WnsSecondaryTile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of NotificationHubs Show documentation
Show all versions of NotificationHubs Show documentation
This package contains the JAVA SDK for Azure Notification Hubs.
The newest version!
package com.windowsazure.messaging;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.apache.commons.io.IOUtils;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
public class WnsSecondaryTile {
private String pushChannel;
private boolean pushChannelExpired;
private List tags;
private Map templates;
public WnsSecondaryTile(){
this(null);
}
public WnsSecondaryTile(String pushChannel){
this(pushChannel, (String[])null);
}
public WnsSecondaryTile(String pushChannel, String... tags){
this.pushChannel = pushChannel;
if(tags != null){
for(String tag : tags){
this.addTag(tag);
}
}
}
public String getPushChannel() {
return pushChannel;
}
public void setPushChannel(String pushChannel) {
this.pushChannel = pushChannel;
}
public boolean isPushChannelExpired() {
return pushChannelExpired;
}
public List getTags() {
return tags;
}
public void addTag(String tag) {
if(this.tags == null){
this.tags = new ArrayList();
}
this.tags.add(tag);
}
public Map getTemplates() {
return templates;
}
public void addTemplate(String templateName, InstallationTemplate template) {
if(this.templates == null){
this.templates = new HashMap();
}
this.templates.put(templateName, template);
}
public static WnsSecondaryTile fromJson(String json){
return new Gson().fromJson(json, WnsSecondaryTile.class);
}
public static WnsSecondaryTile fromJson(InputStream json) throws IOException{
return WnsSecondaryTile.fromJson(IOUtils.toString(json));
}
public String toJson(){
return new GsonBuilder().disableHtmlEscaping().create().toJson(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy