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

org.schema.RegisterAction Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
package org.schema;

/**
 * Schema.org/RegisterAction
 * The act of registering to be a user of a service, product or web page.\n\nRelated actions:\n\n* [[JoinAction]]: Unlike JoinAction, RegisterAction implies you are registering to be a user of a service, *not* a group/team of people.\n* [FollowAction]]: Unlike FollowAction, RegisterAction doesn't imply that the agent is expecting to poll for updates from the object.\n* [[SubscribeAction]]: Unlike SubscribeAction, RegisterAction doesn't imply that the agent is expecting updates from the object.
 *
 * @author schema.org
 * @class RegisterAction
 * @module org.schema
 * @extends InteractAction
 */
public class RegisterAction extends InteractAction {
	/**
	 * Constructor, automatically sets @context and @type.
	 *
	 * @constructor
	 */
	public RegisterAction() {
		context = "http://schema.org/";
		type = "RegisterAction";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy