net.officefloor.tutorial.dynamichttpserver.TemplateLogic Maven / Gradle / Ivy
/*
* OfficeFloor - http://www.officefloor.net
* Copyright (C) 2005-2018 Daniel Sagenschneider
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
package net.officefloor.tutorial.dynamichttpserver;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.LinkedList;
import java.util.List;
import lombok.Data;
/**
* Example logic for the template.
*
* @author Daniel Sagenschneider
*/
// START SNIPPET: example
public class TemplateLogic {
@Data
public static class Values {
private final String time;
private final Property[] properties;
private final Object noBean;
}
@Data
public class Property {
private final String name;
private final String value;
}
/**
* Reflectively invoked by WoOF to obtain the dynamic values to render to
* the page.
*
* @return Bean containing the dynamic values to render to the page
* identified by bean property name.
*/
public Values getTemplateData() {
// Obtain the time
String time = SimpleDateFormat.getTimeInstance().format(new Date());
// Create the listing of properties
List properties = new LinkedList();
for (String name : System.getProperties().stringPropertyNames()) {
String value = System.getProperty(name);
properties.add(new Property(name, value));
}
// Return the populated values
return new Values(time, properties.toArray(new Property[properties
.size()]), null);
}
}
// END SNIPPET: example
© 2015 - 2025 Weber Informatics LLC | Privacy Policy