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

Quick Search    Search Deep

au.edu.educationau.* (602)

Package Samples:

au.edu.educationau.belts.model.lesson
au.edu.educationau.belts.model
au.edu.educationau.belts.model.school
au.edu.educationau.belts.model.user
au.edu.educationau.belts.mock.bootstrap
au.edu.educationau.belts.mock
au.edu.educationau.belts.mock.lesson
au.edu.educationau.belts.mock.school
au.edu.educationau.belts.mock.user
au.edu.educationau.belts.bootstrap.ejb.bean
au.edu.educationau.belts.container.ejb.bean
au.edu.educationau.belts.container.ejb
au.edu.educationau.belts.event.ejb.bean
au.edu.educationau.belts.event.mdb.bean
au.edu.educationau.belts.model.lesson.ejb.bean
au.edu.educationau.belts.model.lesson.ejb
au.edu.educationau.belts.model.school.ejb.bean
au.edu.educationau.belts.model.school.ejb
au.edu.educationau.belts.model.user.ejb.bean
au.edu.educationau.belts.model.user.ejb

Classes:

CommandResult: A result of the execution of a command. A CommandResult consists of the outcome, a result object, and an error list. The outcome is a string which broadly indicates success or failure of the command: OUTCOME_OK 55 Successful execution. OUTCOME_VALIDATION_ERROR 55 The parameters supplied to the command were invalid. OUTCOME_ERROR 55 Unsuccessful execution. OUTCOME_UNKNOWN 55 Indicates a serious internal error in the command implementation. A command should never return this outcome. The error list contains a list of CommandError objects which indicate the cause of the error or validation error. ...
CreateLessonAction: This class performs the action of creating a Lesson, based on the minimal information required for a lesson. The lesson is created with the author and the owner set to the currently logged in user. Required Roles: A person creating a lesson must be a belts:teacher or a belts:advanced-student Required Parameters: id the id (lesson login) for the lesson name the name of the lesson description the description of the lesson instructions the instructions for this lesson Outcomes OK the lesson was created OK ERROR an error occurred during lesson creation VALIDATION a validation error occurred The following ...
ActivateUserAction: This class performs the action of creating a User, based on the minimal information required for a user. The user is created with the blank password. Required Roles: A person creating a user must be a belts:system-administrator or a belts:school-administrator Required Parameters: id the id (user login) for the user title the title of the user familyName the family name of the user givenName the given name of the user emailAddress the email address of the user Outcomes OK the user was created OK ERROR an error occurred during user creation VALIDATION a validation error occurred The following errors ...
DeactivateUserAction: This class performs the action of creating a User, based on the minimal information required for a user. The user is created with the blank password. Required Roles: A person creating a user must be a belts:system-administrator or a belts:school-administrator Required Parameters: id the id (user login) for the user title the title of the user familyName the family name of the user givenName the given name of the user emailAddress the email address of the user Outcomes OK the user was created OK ERROR an error occurred during user creation VALIDATION a validation error occurred The following errors ...
UpdateUserAction: This class performs the action of creating a User, based on the minimal information required for a user. The user is created with the blank password. Required Roles: A person creating a user must be a belts:system-administrator or a belts:school-administrator Required Parameters: id the id (user login) for the user title the title of the user familyName the family name of the user givenName the given name of the user emailAddress the email address of the user Outcomes OK the user was created OK ERROR an error occurred during user creation VALIDATION a validation error occurred The following errors ...
CreateUserAction: This class performs the action of creating a User, based on the minimal information required for a user. The user is created with the random password. Required Roles: A person creating a user must be a belts:system-administrator or a belts:school-administrator Required Parameters: id the id (user login) for the user title the title of the user familyName the family name of the user givenName the given name of the user emailAddress the email address of the user Outcomes OK the user was created OK ERROR an error occurred during user creation VALIDATION a validation error occurred The following errors ...
UpdateLessonAction: This class performs the action of updating a Lesson Required Parameters: id the id of the lesson to update name the name of the lesson description the description of the lesson instructions the instructions for this lesson owner the owner for this lesson author the author for this lesson Outcomes OK the lesson was created OK ERROR an error occurred during lesson creation VALIDATION a validation error occurred The following errors may occur during lesson creation: Duplicate Lesson a lesson with that id already exists Not Allowed to Create Lessons the current user is not allowed to create lessons ...
ResetUserPasswordAction: This class performs the action of resetting a User's password. Required Roles: A person resetting a user's password must be a belts:system-administrator, a belts:school-administrator or a belts:teacher Required Parameters: id the id (user login) for the user password the new password for the user Outcomes OK the password was updated OK ERROR an error occurred during update VALIDATION a validation error occurred The following errors may occur while resetting password: User Not Found a user with that id does not exist Not Allowed to Update User Password the current user is not allowed to update user ...
DeactivateSchoolClassesAction: This class performs the action of creating a SchoolClass, based on the minimal information required for a class. Required Roles: A person creating a class must be a belts:school-administrator Required Parameters: school-id the id for the school id the id for the class Outcomes OK the class was deactivated OK ERROR an error occurred during class creation VALIDATION a validation error occurred The following errors may occur during class creation: Duplicate Class a class with that id already exists Not Allowed to Deactivate Classes the current user is not allowed to deactivate classes Results No results ...
ActivateSchoolClassAction: This class performs the action of creating a SchoolClass, based on the minimal information required for a class. Required Roles: A person creating a class must be a belts:school-administrator Required Parameters: school-id the id for the school id the id for the class Outcomes OK the class was activated OK ERROR an error occurred during class creation VALIDATION a validation error occurred The following errors may occur during class creation: Duplicate Class a class with that id already exists Not Allowed to Activate Classes the current user is not allowed to activate classes Results No results ...
ActivateSchoolClassesAction: This class performs the action of creating a SchoolClass, based on the minimal information required for a class. Required Roles: A person creating a class must be a belts:school-administrator Required Parameters: school-id the id for the school id the id for the class Outcomes OK the class was activated OK ERROR an error occurred during class creation VALIDATION a validation error occurred The following errors may occur during class creation: Duplicate Class a class with that id already exists Not Allowed to Activate Classes the current user is not allowed to activate classes Results No results ...
CocoonRoleInterceptor: Checks to ensure that the user is or is not in a specific application role. By default if nothing is specified the command will be forwarded to the next command interceptor. If parameters are set the following rules are applied in order If the number of permitted roles is > 0 then forward is set to false If the user has one of the permitted roles then forward is set to true If forwarding and deny overrides forwarding the forward is set to false if the user has one of the denied roles If forward is false then a CommandResult will be generated that lets the user know a security issue has been ...
MoveLessonItemDownAction: This class performs the action of moving a Lesson Item in the list Required Parameters: lesson-id the id of the lesson containing the item position the position of the lesson item to move new-position the position to move the new item to Outcomes OK the lesson item was moved OK ERROR an error occurred during lesson item move VALIDATION a validation error occurred The following errors may occur during lesson item move: Lesson Item Not Found a lesson item with that id was not found Not Allowed to move Lesson Items the current user is not allowed to move lesson items Results No results are returned ...
MoveLessonItemUpAction: This class performs the action of moving a Lesson Item in the list Required Parameters: lesson-id the id of the lesson containing the item position the position of the lesson item to move new-position the position to move the new item to Outcomes OK the lesson item was moved OK ERROR an error occurred during lesson item move VALIDATION a validation error occurred The following errors may occur during lesson item move: Lesson Item Not Found a lesson item with that id was not found Not Allowed to move Lesson Items the current user is not allowed to move lesson items Results No results are returned ...
CreateLessonItemAction: This class performs the action of creating a Lesson Item, based on the minimal information required for the item. Required Roles: A person creating a lesson must be a belts:teacher or a belts:advanced-student Required Parameters: lesson-id the id for the lesson url or file the url or file for the item Outcomes OK the item was created OK ERROR an error occurred during item creation VALIDATION a validation error occurred The following errors may occur during item creation: Not Allowed to Create Lesson Itemss the current user is not allowed to create lesson items for this lesson Results No results ...
RemoveSchoolClassUsersAction: This class performs the action of creating a SchoolClass, based on the minimal information required for a class. Required Roles: A person creating a class must be a belts:school-administrator Required Parameters: id the id for the class Outcomes OK the class was updated OK ERROR an error occurred during class creation VALIDATION a validation error occurred The following errors may occur during class creation: Duplicate Class a class with that id already exists Not Allowed to Remove Users from Classes the current user is not allowed to remove users from classes Results No results are returned from ...
DeactivateSchoolAction: This class performs the action of creating a School, based on the minimal information required for a school. Required Roles: A person creating a school must be a belts:system-administrator Required Parameters: id the id for the school Outcomes OK the school was deactivated OK ERROR an error occurred during school creation VALIDATION a validation error occurred The following errors may occur during school creation: Duplicate School a school with that id already exists Not Allowed to Deactivate Schools the current user is not allowed to deactivate schools Results No results are returned from this ...
AddSchoolClassUsersAction: This class performs the action of creating a SchoolClass, based on the minimal information required for a class. Required Roles: A person creating a class must be a belts:school-administrator Required Parameters: id the id for the class Outcomes OK the class was updated OK ERROR an error occurred during class creation VALIDATION a validation error occurred The following errors may occur during class creation: Duplicate Class a class with that id already exists Not Allowed to Add Users to Classes the current user is not allowed to add users to classes Results No results are returned from this action ...
DeactivateSchoolClassAction: This class performs the action of creating a SchoolClass, based on the minimal information required for a class. Required Roles: A person creating a class must be a belts:school-administrator Required Parameters: id the id for the class Outcomes OK the class was deactivated OK ERROR an error occurred during class creation VALIDATION a validation error occurred The following errors may occur during class creation: Duplicate Class a class with that id already exists Not Allowed to Deactivate Classes the current user is not allowed to deactivate classes Results No results are returned from this action ...
CreateSchoolAction: This class performs the action of creating a School, based on the minimal information required for a school. Required Roles: A person creating a school must be a belts:system-administrator Required Parameters: id the id for the school Outcomes OK the school was created OK ERROR an error occurred during school creation VALIDATION a validation error occurred The following errors may occur during school creation: Duplicate School a school with that id already exists Not Allowed to Create Schools the current user is not allowed to create schools Results No results are returned from this action.
CreateSchoolClassAction: This class performs the action of creating a SchoolClass, based on the minimal information required for a class. Required Roles: A person creating a class must be a belts:school-administrator Required Parameters: id the id for the class Outcomes OK the class was created OK ERROR an error occurred during class creation VALIDATION a validation error occurred The following errors may occur during class creation: Duplicate Class a class with that id already exists Not Allowed to Create Classes the current user is not allowed to create classes Results No results are returned from this action.
UpdateSchoolClassAction: This class performs the action of updating a SchoolClass, based on the minimal information required for a class. Required Roles: A person updating a class must be a belts:school-administrator Required Parameters: id the id for the class Outcomes OK the class was updated OK ERROR an error occurred during class update VALIDATION a validation error occurred The following errors may occur during class update: Duplicate Class a class with that id already exists Not Allowed to Update Classes the current user is not allowed to update classes Results No results are returned from this action.
UpdateLessonItemAction: This class performs the action of updating a Lesson Item Required Parameters: id the id of the lesson item to update instructions the instructions for this lesson item Outcomes OK the lesson item was updated OK ERROR an error occurred during lesson item update VALIDATION a validation error occurred The following errors may occur during lesson item update: Lesson Item Not Found a lesson item with that id was not found Not Allowed to update Lesson Items the current user is not allowed to update lesson items Results No results are returned from this action.
AddLessonClassesAction: This class performs the action of adding classes to a lesson Required Roles: A person creating a class must be a belts:school-administrator Required Parameters: id the id for the class Outcomes OK the class was updated OK ERROR an error occurred during class creation VALIDATION a validation error occurred The following errors may occur during class creation: Duplicate Class a class with that id already exists Not Allowed to Add Class to Lessons the current user is not allowed to add classes to lessons Results No results are returned from this action.
ActivateSchoolAction: Activates a school. If the school hasn't been deactivated this command has no effect. Required Roles: A person creating a school must be a belts:system-administrator Required Parameters: id the id for the school Outcomes OK the school is now active ERROR the user is not a belts:system-administrator or other internal error The following errors may occur during school creation: Duplicate School a school with that id already exists Not Allowed to Activate Schools the current user is not allowed to activate schools Results No results are returned from this action.

Home | Contact Us | Privacy Policy | Terms of Service