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

org.kurento.client.ObjectDestroyedEvent Maven / Gradle / Ivy

Go to download

Kurento Client The Kurento Client project allows server applications to control media server resources.

There is a newer version: 7.1.0
Show newest version
/**
 * This file is generated with Kurento ktool-rom-processor.
 * Please don't edit. Changes should go to kms-interface-rom and
 * ktool-rom-processor templates.
 */
package org.kurento.client;


/**
 *
 * Indicates that an object has been destroyed on the mediaserver
 *
 **/
public class ObjectDestroyedEvent extends RaiseBaseEvent {

/**
 *
 * The id of the object that has been destroyed
 *
 **/
	private String objectId;

/**
 *
 * Indicates that an object has been destroyed on the mediaserver
 *
 * @param source
 *       Object that raised the event
 * @param timestamp
 *       [DEPRECATED: Use timestampMillis] The timestamp associated with this object: Seconds elapsed since the UNIX Epoch (Jan 1, 1970, UTC).
 * @param timestampMillis
 *       The timestamp associated with this event: Milliseconds elapsed since the UNIX Epoch (Jan 1, 1970, UTC).
 * @param tags
 *       
 * @param objectId
 *       The id of the object that has been destroyed
 *
 **/
  public ObjectDestroyedEvent(@org.kurento.client.internal.server.Param("source") org.kurento.client.MediaObject source, @org.kurento.client.internal.server.Param("timestamp") String timestamp, @org.kurento.client.internal.server.Param("timestampMillis") String timestampMillis, @org.kurento.client.internal.server.Param("tags") java.util.List tags, @org.kurento.client.internal.server.Param("objectId") String objectId) {
    super(source, timestamp, timestampMillis, tags);
    this.objectId = objectId;
  }

/**
 *
 * Getter for the objectId property
 * @return The id of the object that has been destroyed *
 **/
	public String getObjectId() {
		return objectId;
	}

/**
 *
 * Setter for the objectId property
 *
 * @param objectId
 *       The id of the object that has been destroyed
 *
 **/
	public void setObjectId(String objectId) {
		this.objectId = objectId;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy