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

org.cassproject.schema.cass.competency.RollupRule Maven / Gradle / Ivy

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

import org.cassproject.schema.cass.Cass;
import org.schema.CreativeWork;
import org.stjs.javascript.Array;

/**
 * A segment of script that defines in a domain specific language how competence is transferred from one competency to another.
 *
 * @author [email protected]
 * @class RollupRule
 * @module org.cassproject
 * @extends CreativeWork
 */
public class RollupRule extends CreativeWork {
	private static final String TYPE_0_2 = "http://schema.eduworks.com/cass/0.2/rollupRule";
	private static final String TYPE_0_3 = "http://schema.cassproject.org/0.2/RollupRule";
	private static final String TYPE_0_4 = "http://schema.cassproject.org/0.3/RollupRule";
	private static final String TYPE_0_5 = "https://schema.cassproject.org/0.3/RollupRule";
	private static final String TYPE_0_6 = "https://schema.cassproject.org/0.4/RollupRule";
	public static final String myType = TYPE_0_6;
	/**
	 * The rollup rule encoded as source code that is understandable to the assertion processor.
	 *
	 * @property rule
	 * @type string
	 */
	public String rule;
	/**
	 * Specifies the URL of the competency that the rollup rule pertains to.
	 *
	 * @property competency
	 * @type string
	 */
	public String competency;
	public RollupRule() {
		setContextAndType(Cass.context, myType);
	}

	@Override
	protected void upgrade() {
		super.upgrade();
		if (TYPE_0_2.equals(getFullType())) {
			setContextAndType(Cass.context_0_3, TYPE_0_3);
		}
		if (TYPE_0_3.equals(getFullType())) {
			setContextAndType(Cass.context_0_4, TYPE_0_4);
		}
		if (TYPE_0_4.equals(getFullType())) {
			setContextAndType(Cass.context_0_5, TYPE_0_5);
		}
		if (TYPE_0_5.equals(getFullType())) {
			setContextAndType(Cass.context_0_6, TYPE_0_6);
		}
	}

	@Override
	public Array getTypes() {
		Array a = new Array();
		a.push(TYPE_0_6);
		a.push(TYPE_0_5);
		a.push(TYPE_0_4);
		a.push(TYPE_0_3);
		a.push(TYPE_0_2);
		return a;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy