Skip to content
Snippets Groups Projects
Commit b25adb79 authored by Moritzjenny's avatar Moritzjenny
Browse files

OO-4785: Fix XML formatting for REST response

parent 25325cc8
No related branches found
No related tags found
No related merge requests found
......@@ -2,16 +2,22 @@ package org.olat.restapi.system.vo;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "bigBlueButtonStatisticsVO")
public class BigBlueButtonStatisticsVO {
@XmlAttribute(name="attendeeCount", required=false)
private long attendeeCount;
@XmlAttribute(name="meetingCount", required=false)
private long meetingCount;
@XmlAttribute(name="recordingCount", required=false)
private long recordingCount;
@XmlAttribute(name="videoCount", required=false)
private long videoCount;
@XmlAttribute(name="maximalUserCount", required=false)
private long maximalUserCount;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment