Class: Caliper::Entities::LIS::CourseOffering

Inherits:
EntityBase show all
Includes:
W3C::Organization
Defined in:
lib/caliper/entities/lis/course_offering.rb

Direct Known Subclasses

CourseSection

Instance Attribute Summary collapse

Attributes inherited from EntityBase

#dateCreated, #dateModified, #description, #extensions, #name

Attributes inherited from Entity

#context, #id, #type

Instance Method Summary collapse

Methods included from Jsonable

#eql?, #from_json, included, #to_json

Constructor Details

#initializeCourseOffering

Returns a new instance of CourseOffering.



33
34
35
36
37
38
39
# File 'lib/caliper/entities/lis/course_offering.rb', line 33

def initialize
  super
  @type = Caliper::Entities::EntityType::COURSE_OFFERING
  @courseNumber = nil
  @academicSession = nil
  @subOrganizationOf = nil
end

Instance Attribute Details

#academicSessionObject

Returns the value of attribute academicSession.



31
32
33
# File 'lib/caliper/entities/lis/course_offering.rb', line 31

def academicSession
  @academicSession
end

#courseNumberObject

Returns the value of attribute courseNumber.



31
32
33
# File 'lib/caliper/entities/lis/course_offering.rb', line 31

def courseNumber
  @courseNumber
end

#subOrganizationOfObject

Returns the value of attribute subOrganizationOf.



31
32
33
# File 'lib/caliper/entities/lis/course_offering.rb', line 31

def subOrganizationOf
  @subOrganizationOf
end