org.schema.AllocateAction Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/AllocateAction
* The act of organizing tasks/objects/events by associating resources to it.
*
* @author schema.org
* @class AllocateAction
* @module org.schema
* @extends OrganizeAction
*/
public class AllocateAction extends OrganizeAction {
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public AllocateAction() {
context = "http://schema.org/";
type = "AllocateAction";
}
}