CCM NG/ccm-core: Some files for the Vaadin prototype

git-svn-id: https://svn.libreccm.org/ccm/ccm_ng@4902 8810af33-2d31-482b-a856-94f89814c4df
ccm-docs
jensp 2017-08-09 15:19:59 +00:00
parent 075e94e0ee
commit 64b46ae7f4
4 changed files with 225 additions and 0 deletions

View File

@ -0,0 +1,77 @@
/*
* Copyright (C) 2017 LibreCCM Foundation.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301 USA
*/
package org.libreccm.admin.ui;
import com.vaadin.cdi.ViewScoped;
import org.libreccm.l10n.GlobalizationHelper;
import javax.inject.Inject;
/**
* Contains injection points for all CDI beans by the AdminView and its
* components.
*
* @author <a href="mailto:jens.pelzetter@googlemail.com">Jens Pelzetter</a>
*/
@ViewScoped
class AdminViewController {
protected AdminViewController() {
super();
}
@Inject
private GlobalizationHelper globalizationHelper;
@Inject
private GroupsController groupsController;
@Inject
private JpqlConsoleController jpqlConsoleController;
@Inject
private RolesManager rolesManager;
@Inject
private UsersController usersController;
protected GlobalizationHelper getGlobalizationHelper() {
return globalizationHelper;
}
protected GroupsController getGroupsController() {
return groupsController;
}
protected JpqlConsoleController getJpqlConsoleController() {
return jpqlConsoleController;
}
protected RolesManager getRolesManager() {
return rolesManager;
}
protected UsersController getUsersController() {
return usersController;
}
}

View File

@ -0,0 +1,43 @@
/*
* Copyright (C) 2017 LibreCCM Foundation.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301 USA
*/
package org.libreccm.admin.ui;
import com.vaadin.cdi.ViewScoped;
import org.libreccm.security.GroupManager;
import org.libreccm.security.GroupRepository;
import javax.inject.Inject;
/**
*
* @author <a href="mailto:jens.pelzetter@googlemail.com">Jens Pelzetter</a>
*/
@ViewScoped
public class GroupsController {
@Inject
private GroupManager groupManager;
@Inject
private GroupRepository groupRepository;
@Inject
private GroupsTableDataProvider groupsTableDataProvider;
}

View File

@ -0,0 +1,43 @@
/*
* Copyright (C) 2017 LibreCCM Foundation.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301 USA
*/
package org.libreccm.admin.ui;
import com.vaadin.cdi.ViewScoped;
import org.libreccm.security.RoleManager;
import org.libreccm.security.RoleRepository;
import javax.inject.Inject;
/**
*
* @author <a href="mailto:jens.pelzetter@googlemail.com">Jens Pelzetter</a>
*/
@ViewScoped
class RolesManager {
@Inject
private RoleManager roleManager;
@Inject
private RoleRepository roleRepository;
@Inject
private RolesTableDataProvider rolesTableDataProvider;
}

View File

@ -0,0 +1,62 @@
/*
* Copyright (C) 2017 LibreCCM Foundation.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301 USA
*/
package org.libreccm.admin.ui;
import com.vaadin.cdi.ViewScoped;
import org.libreccm.security.UserManager;
import org.libreccm.security.UserRepository;
import javax.inject.Inject;
/**
* Contains all injection points
*
* @author <a href="mailto:jens.pelzetter@googlemail.com">Jens Pelzetter</a>
*/
@ViewScoped
class UsersController {
@Inject
private UserManager userManager;
@Inject
private UserRepository userRepository;
@Inject
private UsersTableDataProvider usersTableDataProvider;
protected UsersController() {
super();
}
protected UserManager getUserManager() {
return userManager;
}
protected UserRepository getUserRepository() {
return userRepository;
}
protected UsersTableDataProvider getUsersTableDataProvider() {
return usersTableDataProvider;
}
}