Class ContributeEntity

java.lang.Object
dev.jcputney.elearning.parser.input.lom.types.ContributeEntity
All Implemented Interfaces:
Serializable

public class ContributeEntity extends Object implements Serializable
Represents an entity contributing to the lifecycle of the learning object in the Learning Object Metadata (LOM). This class is part of the lifecycle element and provides detailed information about the contributors, their roles, and the dates associated with their contributions.

The following schema snippet defines the structure of this element:


 <xsd:complexType name="centityType">
 		<xsd:sequence>
 			<xsd:element ref="vcard"/>
 		</xsd:sequence>
 	</xsd:complexType>
 

Example XML representation:


 <contributeEntity vcard="BEGIN:VCARD
 VERSION:2.1
 FN:Jane Doe
 ORG:Example Organization
 TEL:+123456789
 END:VCARD"/>
 
See Also:
  • Constructor Details

    • ContributeEntity

      public ContributeEntity()