Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

au.edu.educationau.belts.container.ejb
Class BELTSEJBContainer  view BELTSEJBContainer download BELTSEJBContainer.java

java.lang.Object
  extended byau.edu.educationau.belts.container.ejb.BELTSEJBContainer
All Implemented Interfaces:
au.edu.educationau.belts.container.BELTSContainer, au.edu.educationau.belts.container.Container

public class BELTSEJBContainer
extends java.lang.Object
implements au.edu.educationau.belts.container.BELTSContainer

The BELTSEJBContainer provides a BELTSContainer imlpementation that uses the EJB controllers.

Version:
$Revision: 1.3 $ - $Date: 2003/03/13 03:55:24 $

Field Summary
private  au.edu.educationau.belts.container.BELTSContext _context
           
private  au.edu.educationau.belts.model.school.CountryController _countryController
           
private  au.edu.educationau.belts.model.lesson.LessonController _lessonController
           
private  au.edu.educationau.belts.model.lesson.LessonItemController _lessonItemController
           
private  au.edu.educationau.belts.model.user.RoleController _roleController
           
private  au.edu.educationau.belts.model.school.SchoolClassController _schoolClassController
           
private  au.edu.educationau.belts.model.school.SchoolController _schoolController
           
private  au.edu.educationau.belts.model.school.SectorController _sectorController
           
private  au.edu.educationau.belts.model.school.SizeController _sizeController
           
private  au.edu.educationau.belts.model.school.StateController _stateController
           
private  au.edu.educationau.belts.model.user.TitleController _titleController
           
private  au.edu.educationau.belts.model.school.TypeController _typeController
           
private  au.edu.educationau.belts.model.user.UserController _userController
           
 
Fields inherited from interface au.edu.educationau.belts.container.Container
ROLE
 
Constructor Summary
BELTSEJBContainer(au.edu.educationau.belts.container.BELTSContext context)
          Constructor taking the BELTSContext instance
 
Method Summary
 au.edu.educationau.belts.container.BELTSContext context()
          Provides access to the Container Context information.
 au.edu.educationau.belts.model.school.CountryController countryController()
          Provides access to the container's Country Controller.
 au.edu.educationau.belts.model.lesson.LessonController lessonController()
          Provides access to the container's Lesson Controller.
 au.edu.educationau.belts.model.lesson.LessonItemController lessonItemController()
          Provides access to the container's Lesson Item Controller.
 au.edu.educationau.belts.model.user.RoleController roleController()
          Provides access to the container's Role Controller.
 au.edu.educationau.belts.model.school.SchoolClassController schoolClassController()
          Provides access to the container's SchoolClass Controller.
 au.edu.educationau.belts.model.school.SchoolController schoolController()
          Provides access to the container's School Controller.
 au.edu.educationau.belts.model.school.SectorController sectorController()
          Provides access to the container's Sector Controller.
 au.edu.educationau.belts.model.school.SizeController sizeController()
          Provides access to the container's Size Controller.
 au.edu.educationau.belts.model.school.StateController stateController()
          Provides access to the container's State Controller.
 au.edu.educationau.belts.model.user.TitleController titleController()
          Provides access to the container's Title Controller.
 au.edu.educationau.belts.model.school.TypeController typeController()
          Provides access to the container's Type Controller.
 au.edu.educationau.belts.model.user.UserController userController()
          Provides access to the container's User Controller.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

_lessonController

private au.edu.educationau.belts.model.lesson.LessonController _lessonController

_lessonItemController

private au.edu.educationau.belts.model.lesson.LessonItemController _lessonItemController

_userController

private au.edu.educationau.belts.model.user.UserController _userController

_roleController

private au.edu.educationau.belts.model.user.RoleController _roleController

_schoolController

private au.edu.educationau.belts.model.school.SchoolController _schoolController

_schoolClassController

private au.edu.educationau.belts.model.school.SchoolClassController _schoolClassController

_countryController

private au.edu.educationau.belts.model.school.CountryController _countryController

_stateController

private au.edu.educationau.belts.model.school.StateController _stateController

_sectorController

private au.edu.educationau.belts.model.school.SectorController _sectorController

_sizeController

private au.edu.educationau.belts.model.school.SizeController _sizeController

_titleController

private au.edu.educationau.belts.model.user.TitleController _titleController

_typeController

private au.edu.educationau.belts.model.school.TypeController _typeController

_context

private au.edu.educationau.belts.container.BELTSContext _context
Constructor Detail

BELTSEJBContainer

public BELTSEJBContainer(au.edu.educationau.belts.container.BELTSContext context)
                  throws javax.ejb.CreateException
Constructor taking the BELTSContext instance

Method Detail

lessonController

public au.edu.educationau.belts.model.lesson.LessonController lessonController()
Description copied from interface: au.edu.educationau.belts.container.BELTSContainer
Provides access to the container's Lesson Controller. The lesson controller allows you to create, remove and find BELTS lessons.

Specified by:
lessonController in interface au.edu.educationau.belts.container.BELTSContainer

lessonItemController

public au.edu.educationau.belts.model.lesson.LessonItemController lessonItemController()
Description copied from interface: au.edu.educationau.belts.container.BELTSContainer
Provides access to the container's Lesson Item Controller. The lesson item controller allows you to create, remove and find BELTS lesson items.

Specified by:
lessonItemController in interface au.edu.educationau.belts.container.BELTSContainer

userController

public au.edu.educationau.belts.model.user.UserController userController()
Description copied from interface: au.edu.educationau.belts.container.BELTSContainer
Provides access to the container's User Controller. The user controller allows you to create, remove and find BELTS users.

Specified by:
userController in interface au.edu.educationau.belts.container.BELTSContainer

countryController

public au.edu.educationau.belts.model.school.CountryController countryController()
Description copied from interface: au.edu.educationau.belts.container.BELTSContainer
Provides access to the container's Country Controller. The country controller allows you to create, remove and find BELTS countries.

Specified by:
countryController in interface au.edu.educationau.belts.container.BELTSContainer

roleController

public au.edu.educationau.belts.model.user.RoleController roleController()
Description copied from interface: au.edu.educationau.belts.container.BELTSContainer
Provides access to the container's Role Controller. The role controller allows you to create, remove and find BELTS roles.

Specified by:
roleController in interface au.edu.educationau.belts.container.BELTSContainer

schoolClassController

public au.edu.educationau.belts.model.school.SchoolClassController schoolClassController()
Description copied from interface: au.edu.educationau.belts.container.BELTSContainer
Provides access to the container's SchoolClass Controller. The school class controller allows you to create, remove and find BELTS classes.

Specified by:
schoolClassController in interface au.edu.educationau.belts.container.BELTSContainer

schoolController

public au.edu.educationau.belts.model.school.SchoolController schoolController()
Description copied from interface: au.edu.educationau.belts.container.BELTSContainer
Provides access to the container's School Controller. The school controller allows you to create, remove and find BELTS schools.

Specified by:
schoolController in interface au.edu.educationau.belts.container.BELTSContainer

sectorController

public au.edu.educationau.belts.model.school.SectorController sectorController()
Description copied from interface: au.edu.educationau.belts.container.BELTSContainer
Provides access to the container's Sector Controller. The sector controller allows you to create, remove and find BELTS sectors.

Specified by:
sectorController in interface au.edu.educationau.belts.container.BELTSContainer

sizeController

public au.edu.educationau.belts.model.school.SizeController sizeController()
Description copied from interface: au.edu.educationau.belts.container.BELTSContainer
Provides access to the container's Size Controller. The size controller allows you to create, remove and find BELTS sizes.

Specified by:
sizeController in interface au.edu.educationau.belts.container.BELTSContainer

stateController

public au.edu.educationau.belts.model.school.StateController stateController()
Description copied from interface: au.edu.educationau.belts.container.BELTSContainer
Provides access to the container's State Controller. The state controller allows you to create, remove and find BELTS states.

Specified by:
stateController in interface au.edu.educationau.belts.container.BELTSContainer

titleController

public au.edu.educationau.belts.model.user.TitleController titleController()
Description copied from interface: au.edu.educationau.belts.container.BELTSContainer
Provides access to the container's Title Controller. The title controller allows you to create, remove and find BELTS school titles.

Specified by:
titleController in interface au.edu.educationau.belts.container.BELTSContainer

typeController

public au.edu.educationau.belts.model.school.TypeController typeController()
Description copied from interface: au.edu.educationau.belts.container.BELTSContainer
Provides access to the container's Type Controller. The type controller allows you to create, remove and find BELTS school types.

Specified by:
typeController in interface au.edu.educationau.belts.container.BELTSContainer

context

public au.edu.educationau.belts.container.BELTSContext context()
Description copied from interface: au.edu.educationau.belts.container.Container
Provides access to the Container Context information.

Specified by:
context in interface au.edu.educationau.belts.container.Container