Skip to content

Commit

Permalink
Added spdx Headers
Browse files Browse the repository at this point in the history
Signed-off-by: Pascal Wilbrink <[email protected]>
  • Loading branch information
pascalwilbrink committed Oct 31, 2023
1 parent e8cccb1 commit 8c42915
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: 2023 Alliander N.V.
//
// SPDX-License-Identifier: Apache-2.0
package org.lfenergy.compas.scl.data.model;

public interface IAbstractItem {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: 2023 Alliander N.V.
//
// SPDX-License-Identifier: Apache-2.0
package org.lfenergy.compas.scl.data.model;

public interface IHistoryItem extends IAbstractItem {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: 2023 Alliander N.V.
//
// SPDX-License-Identifier: Apache-2.0
package org.lfenergy.compas.scl.data.model;

import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class Item extends AbstractItem implements IItem {
example = "[Label-1, Label-2]")
@XmlElement(name = "Label",
namespace = SCL_DATA_SERVICE_V1_NS_URI)
private List<String> labels;
private List<String> labels = new ArrayList<>();

public Item() { }

Expand Down

0 comments on commit 8c42915

Please sign in to comment.