From c5ec2724c772e400c5515ed7ff1a906a7d779924 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Istv=C3=A1n=20R=C3=A1tkai?= Date: Mon, 17 Apr 2023 16:51:27 +0100 Subject: [PATCH] remove AgentProfile --- .../dev/learning/xapi/model/AgentProfile.java | 39 ------------------- 1 file changed, 39 deletions(-) delete mode 100644 xapi-model/src/main/java/dev/learning/xapi/model/AgentProfile.java diff --git a/xapi-model/src/main/java/dev/learning/xapi/model/AgentProfile.java b/xapi-model/src/main/java/dev/learning/xapi/model/AgentProfile.java deleted file mode 100644 index 74fc3059..00000000 --- a/xapi-model/src/main/java/dev/learning/xapi/model/AgentProfile.java +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright 2016-2023 Berry Cloud Ltd. All rights reserved. - */ - -package dev.learning.xapi.model; - -import com.fasterxml.jackson.annotation.JsonInclude; -import com.fasterxml.jackson.annotation.JsonInclude.Include; -import com.fasterxml.jackson.databind.node.ObjectNode; -import dev.learning.xapi.model.validation.constraints.ValidActor; -import jakarta.validation.Valid; -import lombok.Builder; -import lombok.Value; - -/** - * This class represents the xAPI Agent Profile object. - * - * @author Thomas Turrell-Croft - * - * @see xAPI - * Agent Profile - */ -@Value -@Builder -@JsonInclude(Include.NON_EMPTY) -public class AgentProfile { - - @Valid - @ValidActor - private Agent agent; - - private String profileId; - - private ObjectNode profile; - - // **Warning** do not add fields that are not required by the xAPI specification. - -}