package com.alphacsp.theedge.data.entities;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamImplicit;
import java.util.List;
/**
* Created by IntelliJ IDEA.
* User: Gilad
* Date: 20/10/10
* Time: 15:30
*/
@XStreamAlias("speakers")
public class Speakers {
@XStreamImplicit(itemFieldName = "speaker")
List<Speaker> speakerList;
public List<Speaker> getSpeakerList() {
return speakerList;
}
}
|