-
Notifications
You must be signed in to change notification settings - Fork 2
Preserve imsss and adlseq objectives as separate containers #552
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
97 changes: 97 additions & 0 deletions
97
...main/java/dev/jcputney/elearning/parser/input/scorm2004/adl/sequencing/ADLObjectives.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,97 @@ | ||
| /* | ||
| * Copyright (c) 2024-2026 Jonathan Putney | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"). | ||
| * You may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at the project root LICENSE file | ||
| * or at http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * SPDX-License-Identifier: Apache-2.0 | ||
| */ | ||
| package dev.jcputney.elearning.parser.input.scorm2004.adl.sequencing; | ||
|
|
||
| import com.fasterxml.jackson.annotation.JsonFormat; | ||
| import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | ||
| import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; | ||
| import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; | ||
| import dev.jcputney.elearning.parser.input.scorm2004.ADLSeq; | ||
| import java.io.Serializable; | ||
| import java.util.List; | ||
| import org.apache.commons.lang3.builder.EqualsBuilder; | ||
| import org.apache.commons.lang3.builder.HashCodeBuilder; | ||
|
|
||
| /** | ||
| * Represents the ADL sequencing objectives container. | ||
| * | ||
| * <p>SCORM 2004 defines {@code adlseq:objectives} separately from IMS Simple Sequencing | ||
| * {@code imsss:objectives}. The ADL container contains one or more {@code adlseq:objective} | ||
| * elements whose {@code adlseq:mapInfo} children expose additional score, completion, and progress | ||
| * mapping flags.</p> | ||
| */ | ||
| @JsonIgnoreProperties(ignoreUnknown = true) | ||
| @JsonFormat(with = JsonFormat.Feature.ACCEPT_CASE_INSENSITIVE_PROPERTIES) | ||
| public final class ADLObjectives implements Serializable { | ||
|
|
||
| /** | ||
| * ADL objectives in document order. | ||
| */ | ||
| @JacksonXmlElementWrapper(localName = "objective", useWrapping = false) | ||
| @JacksonXmlProperty(localName = "objective", namespace = ADLSeq.NAMESPACE_URI) | ||
| private List<ADLObjective> objectiveList; | ||
|
|
||
| /** | ||
| * Default constructor for Jackson and callers that populate the container manually. | ||
| */ | ||
| public ADLObjectives() { | ||
| // no-op | ||
| } | ||
|
|
||
| /** | ||
| * Constructs an ADL objectives container with the supplied objective list. | ||
| * | ||
| * @param objectiveList ADL objectives in document order | ||
| */ | ||
| public ADLObjectives(List<ADLObjective> objectiveList) { | ||
| this.objectiveList = objectiveList; | ||
| } | ||
|
|
||
| /** | ||
| * Returns the ADL objectives in document order. | ||
| * | ||
| * @return ADL objectives, or null if none were parsed | ||
| */ | ||
| public List<ADLObjective> getObjectiveList() { | ||
| return this.objectiveList; | ||
| } | ||
|
|
||
| /** | ||
| * Sets the ADL objectives in document order. | ||
| * | ||
| * @param objectiveList ADL objectives to assign | ||
| */ | ||
| public void setObjectiveList(List<ADLObjective> objectiveList) { | ||
| this.objectiveList = objectiveList; | ||
| } | ||
|
|
||
| @Override | ||
| public boolean equals(Object o) { | ||
| if (this == o) { | ||
| return true; | ||
| } | ||
|
|
||
| if (!(o instanceof ADLObjectives that)) { | ||
| return false; | ||
| } | ||
|
|
||
| return new EqualsBuilder() | ||
| .append(getObjectiveList(), that.getObjectiveList()) | ||
| .isEquals(); | ||
| } | ||
|
|
||
| @Override | ||
| public int hashCode() { | ||
| return new HashCodeBuilder(17, 37) | ||
| .append(getObjectiveList()) | ||
| .toHashCode(); | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.