AssessmentBaseFacade is the class that is exposed to developer
It contains some of the useful methods specified in
org.osid.assessment.Assessment and it implements
org.sakaiproject.tool.assessment.ifc.
IMPORTANT: this constructor do not have "data", this constructor is
merely used for holding assessmentBaseId (which is the assessmentId), Title
& lastModifiedDate for displaying purpose.
IMPORTANT: this constructor do not have "data", this constructor is
merely used for holding assessmentBaseId (which is the assessmentId), Title
& lastModifiedDate for displaying purpose.
IMPORTANT: this constructor do not have "data", this constructor is
merely used for holding assessmentBaseId (which is the templateId) & Title
for displaying purpose.
IMPORTANT: this constructor do not have "data", this constructor is
merely used for holding assessmentBaseId (which is the assessmentId), Title
& lastModifiedDate for displaying purpose.
These characters are allowed; but if escapeResourceName() is called, they are escaped (actually, removed) Certain characters cause problems with filenames in certain OSes - so get rid of these characters in filenames
Copyright: Copyright (c) 2003
Organization: Stanford University
This class implements common methods for describing data needed to
record/save and retrieve audio recordings.
FileNamer() -
Constructor for class org.sakaiproject.tool.assessment.business.entity.FileNamer
public ArrayList getAllReviewableAssessments(String agentId, String orderBy,
boolean ascending) {
// 1. get total no. of submission per assessment by the given agent
HashMap h = getTotalSubmissionPerAssessment(agentId);
ArrayList assessmentList = PersistenceService.getInstance().
this return a HashMap containing (Long publishedAssessmentId,
PublishedAssessmentFacade publishedAssessment) Note that the
publishedAssessment is a partial object used for display only. do not use
it for persisting.
this return a HashMap containing
(Long publishedAssessmentId, PublishedAssessmentFacade publishedAssessment)
Note that the publishedAssessment is a partial object used for display only.
rachelgollub: So takeable is that you have *not* reached the number of
submissions and you're either before the due date or (you're after the due
date, you haven't submitted yet, and late handling is enabled)
return an array list of the AssessmentGradingFacade that a user has
submitted for grade. one per published assessment, when allAssessments is false,
and all submissions per published assessment when allAssesments is true.
public ArrayList getAllPublishedAssessmentId() {
ArrayList list = getBasicInfoOfAllActivePublishedAssessments("title", true);
ArrayList publishedIds = new ArrayList();
for (int i = 0; i < list.size(); i++) {
PublishedAssessmentFacade f = (PublishedAssessmentFacade) list.get(i);
Long publishedId = f.getPublishedAssessmentId();
publishedIds.add(publishedId);
}
return publishedIds;
}
not tested this method -daisy 11/16/04
public void removeAssessmentMetaDataByLabel(String label) {
HashSet set = new HashSet();
Iterator iter = this.publishedMetaDataSet.iterator();
while (iter.hasNext()){
PublishedMetaData metadata = (PublishedMetaData) iter.next();
if (!
return a set of PublishedSectionData IMPORTANT: 1. we have declared
SectionData as lazy loading, so we need to initialize it using
getHibernateTemplate().initialize(java.lang.Object).
return a set of PublishedSectionData
IMPORTANT:
1. we have declared SectionData as lazy loading, so we need to
initialize it using getHibernateTemplate().initialize(java.lang.Object).
ItemFacade is the class that is exposed to developer
It contains some of the useful methods specified in
org.osid.assessment.Item and it implements
org.sakaiproject.tool.assessment.ifc.
ItemFacade is the class that is exposed to developer
It contains some of the useful methods specified in
org.osid.assessment.Item and it implements
org.sakaiproject.tool.assessment.ifc.
IMPORTANT: this constructor do not have "data", this constructor is
merely used for holding questionPoolId, Title
for displaying purpose (used by the pulldown list in authoring).
IMPORTANT: this constructor do not have "data", this constructor is
merely used for holding questionPoolId, Title, parentId
for validation question pool
This constructor does not persist data (which it has none) to DB
Copyright: Copyright (c) 2003
Organization: Stanford University
This class implements common methods for describing data needed to
record/save and retrieve audio recordings.
Removes an authorization for a specified agent, qualifier and function
TODO: This should be optimized into a single SQL call for a set of agents (groups)
added by gopalrc - Nov 2007
Removes an authorization for a specified agent, qualifier and function
TODO: This should be optimized into a single SQL call for a set of agents (groups)
added by gopalrc - Nov 2007
Removes an authorization for a specified agent, qualifier and function
TODO: This should be optimized into a single SQL call for a set of agents (groups)
added by gopalrc - Nov 2007
SectionFacade is the class that is exposed to developer
It contains some of the useful methods specified in
org.osid.assessment.Section and it implements
org.sakaiproject.tool.assessment.ifc.
Title: Navigo Project: AAM
Description: Standard Date
Purpose: Encapsulate the standard date format used in AAM
Copyright: Copyright (c) 2003
Company: Stanford University