All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.bestwu.umeng.push.PushProperties Maven / Gradle / Ivy

There is a newer version: 1.5.5
Show newest version
package cn.bestwu.umeng.push;

import org.springframework.boot.context.properties.ConfigurationProperties;

@ConfigurationProperties(prefix = "umeng.push")
public class PushProperties extends NotificationProperties {
	private NotificationProperties android;

	private NotificationProperties ios;

	public NotificationProperties getAndroid() {
		return android;
	}

	public void setAndroid(NotificationProperties android) {
		this.android = android;
	}

	public NotificationProperties getIos() {
		return ios;
	}

	public void setIos(NotificationProperties ios) {
		this.ios = ios;
	}

	//--------------------------------------------

	@Override public String toString() {
		return "PushProperties{" +
				"android=" + android +
				", ios=" + ios +
				"} " + super.toString();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy