HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux vmi1674223.contaboserver.net 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC 2024 x86_64
User: root (0)
PHP: 7.4.3-4ubuntu2.22
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/unitime/target/classes/Reservation.hbm.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">

<!-- 
 * Licensed to The Apereo Foundation under one or more contributor license
 * agreements. See the NOTICE file distributed with this work for
 * additional information regarding copyright ownership.
 *
 * The Apereo Foundation licenses this file to you under the Apache License,
 * Version 2.0 (the "License"); you may not use this file except in
 * compliance with the License. You may obtain a copy of the License at:
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * 
 -->
<hibernate-mapping package="org.unitime.timetable.model">
    <class name="Reservation" table="reservation" abstract="true" discriminator-value="-1">
        <cache include="non-lazy" usage="transactional"/>
        <id
            name="uniqueId"
            column="uniqueid"
            type="java.lang.Long">
            <generator class="org.unitime.commons.hibernate.id.UniqueIdGenerator">
                <param name="sequence">reservation_seq</param>
            </generator>
        </id>

        <discriminator column="reservation_type" type="java.lang.Integer"/>
        
        <property
            name="expirationDate"
            column="expiration_date"
            type="java.sql.Timestamp"
            not-null="false"/>
       	
       	<property
       		name="limit"
       		column="reservation_limit"
       		type="java.lang.Integer"
       		not-null="false"/>
       		
		<property
            name="startDate"
            column="start_date"
            type="java.sql.Timestamp"
            not-null="false"/>
            
        <property
            name="inclusive"
            column="inclusive"
            type="java.lang.Boolean"
            not-null="false"/>

        <many-to-one
            name="instructionalOffering"
            class="InstructionalOffering"
            column="offering_id"
            not-null="true"
            foreign-key="fk_reservation_offering"/>
        
        <set
            name="configurations"
            table="reservation_config"
            inverse="false"
            lazy="true">

            <cache include="non-lazy" usage="transactional"/>
            <key column="reservation_id" foreign-key="fk_res_config_reservation"/>
            <many-to-many class="InstrOfferingConfig" column="config_id" foreign-key="fk_res_config_config"/>
        </set>
        
        <set
            name="classes"
            table="reservation_class"
            inverse="false"
            lazy="true">

            <cache include="non-lazy" usage="transactional"/>
            <key column="reservation_id" foreign-key="fk_res_class_reservation"/>
            <many-to-many class="Class_" column="class_id" foreign-key="fk_res_class_class"/>
        </set>
        
        <subclass
            name="IndividualReservation"
            abstract="false"
            discriminator-value="0">
        	<set
            	name="students"
            	table="reservation_student"
            	inverse="false"
            	lazy="true">

            	<cache include="non-lazy" usage="transactional"/>
        	    <key column="reservation_id" foreign-key="fk_res_student_reservation"/>
    	        <many-to-many class="Student" column="student_id" foreign-key="fk_res_student_student"/>
	        </set>
	        
	        <subclass
	        	name="OverrideReservation"
	        	abstract="false"
	        	discriminator-value="4">
	        	
	        	<property
	        		name="type"
	        		column="override_type"
	        		type="java.lang.Integer"
	        		not-null="true"/>
	        	
	        </subclass>

	        <subclass
	        	name="IndividualOverrideReservation"
	        	abstract="false"
	        	discriminator-value="5">
	        	
	        	<property
	        		name="flags"
	        		column="override_type"
	        		type="java.lang.Integer"
	        		not-null="true"/>
	        </subclass>
	    </subclass>

        <subclass
            name="StudentGroupReservation"
            abstract="false"
            discriminator-value="1">
            
        	<many-to-one
            	name="group"
            	class="StudentGroup"
        	    column="group_id"
    	        not-null="true"
	            foreign-key="fk_reservation_student_group"/>

	        <subclass
	        	name="GroupOverrideReservation"
	        	abstract="false"
	        	discriminator-value="6">
	        	
	        	<property
	        		name="flags"
	        		column="override_type"
	        		type="java.lang.Integer"
	        		not-null="true"/>
	        </subclass>
	        
	        <subclass
	        	name="LearningCommunityReservation"
	        	abstract="false"
	        	discriminator-value="7">
	        	
	        	<many-to-one
            		name="course"
            		class="CourseOffering"
        	    	column="course_id"
    	        	not-null="true"
	            	foreign-key="fk_reservation_course"/>
	        </subclass>
       	</subclass>

        <subclass
            name="CurriculumReservation"
            abstract="false"
            discriminator-value="2">
	        
	        <set
        	    name="areas"
            	table="reservation_acad_area"
        	    inverse="false"
    	        lazy="true">

	            <cache include="non-lazy" usage="transactional"/>
            	<key column="reservation_id" foreign-key="fk_res_acad_areas_reservation"/>
        	    <many-to-many class="AcademicArea" column="area_id" foreign-key="fk_res_acad_areas_area"/>
    	    </set>

    	    <set
        	    name="majors"
            	table="reservation_major"
        	    inverse="false"
    	        lazy="true">

	            <cache include="non-lazy" usage="transactional"/>
            	<key column="reservation_id" foreign-key="fk_res_majors_reservation"/>
        	    <many-to-many class="PosMajor" column="major_id" foreign-key="fk_res_majors_major"/>
    	    </set>
    	    
    	     <set
        	    name="concentrations"
            	table="reservation_major_conc"
        	    inverse="false"
    	        lazy="true">

	            <cache include="non-lazy" usage="transactional"/>
            	<key column="reservation_id" foreign-key="fk_res_mj_conc_res"/>
        	    <many-to-many class="PosMajorConcentration" column="concentration_id" foreign-key="fk_res_mj_conc_conc"/>
    	    </set>
        
	        <set
            	name="classifications"
        	    table="reservation_clasf"
    	        inverse="false"
	            lazy="true">

            	<cache include="non-lazy" usage="transactional"/>
        	    <key column="reservation_id" foreign-key="fk_res_clasf_reservation"/>
    	        <many-to-many class="AcademicClassification" column="acad_clasf_id" foreign-key="fk_res_clasf_clasf"/>
	        </set>
	        
    	    <set
        	    name="minors"
            	table="reservation_minor"
        	    inverse="false"
    	        lazy="true">

	            <cache include="non-lazy" usage="transactional"/>
            	<key column="reservation_id" foreign-key="fk_res_minors_reservation"/>
        	    <many-to-many class="PosMinor" column="minor_id" foreign-key="fk_res_minors_minor"/>
    	    </set>
	        
	        <subclass
	        	name="CurriculumOverrideReservation"
	        	abstract="false"
	        	discriminator-value="8">
	        	
	        	<property
	        		name="flags"
	        		column="override_type"
	        		type="java.lang.Integer"
	        		not-null="true"/>
	        </subclass>
        </subclass>
        
        <subclass
        	name="CourseReservation"
            abstract="false"
            discriminator-value="3">

        	<many-to-one
            	name="course"
            	class="CourseOffering"
        	    column="course_id"
    	        not-null="true"
	            foreign-key="fk_reservation_course"/>
		</subclass>        	

        <subclass
        	name="UniversalOverrideReservation"
            abstract="false"
            discriminator-value="9">

        	<property
        		name="filter"
            	column="filter"
            	type="java.lang.String"
            	length="512"
            	not-null="false"/>
            	
	        <property
	        	name="flags"
	        	column="override_type"
	        	type="java.lang.Integer"
	        	not-null="true"/>
		</subclass>
    </class>
</hibernate-mapping>