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

com.tourgeek.tour.booking.remote.booking.detail.BookingHotelSession Maven / Gradle / Ivy

There is a newer version: 0.8.5
Show newest version
/**
  * @(#)BookingHotelSession.
  * Copyright © 2013 tourgeek.com. All rights reserved.
  * GPL3 Open Source Software License.
  */
package com.tourgeek.tour.booking.remote.booking.detail;

import java.util.*;

import org.jbundle.base.db.*;
import org.jbundle.thin.base.util.*;
import org.jbundle.thin.base.db.*;
import org.jbundle.base.db.event.*;
import org.jbundle.base.db.filter.*;
import org.jbundle.base.field.*;
import org.jbundle.base.field.convert.*;
import org.jbundle.base.field.event.*;
import org.jbundle.base.model.*;
import org.jbundle.base.util.*;
import org.jbundle.model.*;
import org.jbundle.model.db.*;
import org.jbundle.model.screen.*;
import com.tourgeek.tour.booking.detail.db.*;
import org.jbundle.thin.base.remote.*;
import org.jbundle.base.remote.*;
import com.tourgeek.tour.product.hotel.db.*;
import com.tourgeek.tour.product.base.db.*;

/**
 *  BookingHotelSession - .
 */
public class BookingHotelSession extends BookingDetailBaseSession
{
    /**
     * Default constructor.
     */
    public BookingHotelSession() throws RemoteException
    {
        super();
    }
    /**
     * BookingHotelSession Method.
     */
    public BookingHotelSession(BaseSession parentSessionObject, Record record, Map objectID) throws RemoteException
    {
        this();
        this.init(parentSessionObject, record, objectID);
    }
    /**
     * Initialize class fields.
     */
    public void init(BaseSession parentSessionObject, Record record, Map objectID)
    {
        super.init(parentSessionObject, record, objectID);
    }
    /**
     * Override this to open the main file for this session.
     */
    public Record openMainRecord()
    {
        return new BookingHotel(this);
    }
    /**
     * Override this to open other session files.
     */
    public void openOtherRecords()
    {
        super.openOtherRecords();
        new HotelClass(this);
        new MealPlan(this);
    }
    /**
     * Add behaviors to this session.
     */
    public void addListeners()
    {
        super.addListeners();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy