{
InputStream inputStream = new FileInputStream(path);
JAXBContext jc = JAXBContext.newInstance(Project.class);
Unmarshaller um = jc.createUnmarshaller();
Project project = ((Project) um.unmarshal(inputStream));
Configuration configuration = project.getConfiguration();
if (configuration != null)
{
Data data = configuration.getData();