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

io.antmedia.licence.CommunityLicenceService Maven / Gradle / Ivy

Go to download

Ant Media Server supports RTMP, RTSP, MP4, HLS, WebRTC, Adaptive Streaming, etc.

There is a newer version: 2.10.0
Show newest version
package io.antmedia.licence;

import io.antmedia.datastore.db.types.Licence;
import io.antmedia.settings.ServerSettings;

public class CommunityLicenceService implements ILicenceService{
	
	public void start() {
		//no need to implement for Community Edition
	}

	public Licence checkLicence (String key) {
		//no need to implement for Community Edition
		return null;
	}


	public void setServerSettings(ServerSettings serverSettings) {
		//no need to implement for Community Edition
	}

	@Override
	public Licence getLastLicenseStatus() {
		//no need to implement for Community Edition
		return null;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy