org.schema.AddAction Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/AddAction
* The act of editing by adding an object to a collection.
*
* @author schema.org
* @class AddAction
* @module org.schema
* @extends UpdateAction
*/
public class AddAction extends UpdateAction {
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public AddAction() {
context = "http://schema.org/";
type = "AddAction";
}
}