org.schema.Resort Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/Resort
* A resort is a place used for relaxation or recreation, attracting visitors for holidays or vacations. Resorts are places, towns or sometimes commercial establishment operated by a single company (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Resort).
*
* See also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.
*
* @author schema.org
* @class Resort
* @module org.schema
* @extends LodgingBusiness
*/
public class Resort extends LodgingBusiness {
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public Resort() {
context = "http://schema.org/";
type = "Resort";
}
}