Package models.planning

Examples of models.planning.Planning


    public static void index() {
        listOn(ConferenceEvent.CURRENT);
    }

    public static void planningMixIT13() {
        Planning planning = PlanedSlot.on(ConferenceEvent.CURRENT, true);
        renderTemplate("Sessions/planning.html", planning);
    }
View Full Code Here


@Check({Role.ADMIN_PLANNING, Role.ADMIN_SESSION})
@With(SecureLinkIt.class)
public class AdminPlanning extends Controller {

    public static void index() {
        Planning planning = PlanedSlot.on(ConferenceEvent.CURRENT, true);
        render(planning);
    }
View Full Code Here

import java.util.List;

public class ApiSessions extends JsonpController {

    public static void talks(boolean details) {
        Planning planning = PlanedSlot.on(ConferenceEvent.CURRENT, true);
        renderJSON(planning.getSlots(), getSerializers(details));
    }
View Full Code Here

TOP

Related Classes of models.planning.Planning

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.