Uses of Class
fr.paris.lutece.plugins.unittree.business.unit.Unit

Packages that use Unit
fr.paris.lutece.plugins.unittree.business.unit   
fr.paris.lutece.plugins.unittree.service.sector   
fr.paris.lutece.plugins.unittree.service.unit   
fr.paris.lutece.plugins.unittree.web.action   
 

Uses of Unit in fr.paris.lutece.plugins.unittree.business.unit
 

Methods in fr.paris.lutece.plugins.unittree.business.unit that return Unit
static Unit UnitHome.findByIdUser(int nIdUser)
          Load an unit by id user
static Unit UnitHome.findByPrimaryKey(int nIdUnit)
          Load the unit
 Unit UnitDAO.load(int nIdUnit, fr.paris.lutece.portal.service.plugin.Plugin plugin)
          Load the unit
 Unit IUnitDAO.load(int nIdUnit, fr.paris.lutece.portal.service.plugin.Plugin plugin)
          Load the unit
 Unit UnitDAO.selectByIdUser(int nIdUser, fr.paris.lutece.portal.service.plugin.Plugin plugin)
          Load an unit by id user
 Unit IUnitDAO.selectByIdUser(int nIdUser, fr.paris.lutece.portal.service.plugin.Plugin plugin)
          Load an unit by id user
 

Methods in fr.paris.lutece.plugins.unittree.business.unit that return types with arguments of type Unit
static java.util.List<Unit> UnitHome.findAll()
          Select all units
static java.util.List<Unit> UnitHome.findByFilter(UnitFilter uFilter)
          Find the units by filter
 java.util.List<Unit> UnitDAO.findBySectorId(long lIdSector)
          Return all the Unit of the Sector
 java.util.List<Unit> IUnitDAO.findBySectorId(long lIdSector)
          Return all the Unit of the Sector
 java.util.List<Unit> UnitDAO.selectAll(fr.paris.lutece.portal.service.plugin.Plugin plugin)
          Select all units
 java.util.List<Unit> IUnitDAO.selectAll(fr.paris.lutece.portal.service.plugin.Plugin plugin)
          Select all units
 java.util.List<Unit> UnitDAO.selectByFilter(UnitFilter cmFilter, fr.paris.lutece.portal.service.plugin.Plugin plugin)
          Select the units by filter
 java.util.List<Unit> IUnitDAO.selectByFilter(UnitFilter uFilter, fr.paris.lutece.portal.service.plugin.Plugin plugin)
          Select the units by filter
 

Methods in fr.paris.lutece.plugins.unittree.business.unit with parameters of type Unit
static int UnitHome.create(Unit unit)
          Insert a new unit
 int UnitDAO.insert(Unit unit, fr.paris.lutece.portal.service.plugin.Plugin plugin)
          Insert a new unit
 int IUnitDAO.insert(Unit unit, fr.paris.lutece.portal.service.plugin.Plugin plugin)
          Insert a new unit
static void UnitHome.update(Unit unit)
          Update a unit
 void UnitDAO.update(Unit unit, fr.paris.lutece.portal.service.plugin.Plugin plugin)
          Update a unit
 void IUnitDAO.update(Unit unit, fr.paris.lutece.portal.service.plugin.Plugin plugin)
          Update a unit
 

Uses of Unit in fr.paris.lutece.plugins.unittree.service.sector
 

Methods in fr.paris.lutece.plugins.unittree.service.sector with parameters of type Unit
 void SectorService.addSectorsToUnit(Unit unit, java.util.List<java.lang.Integer> listIdsSector)
          Add sectors to the unit
 void ISectorService.addSectorsToUnit(Unit unit, java.util.List<java.lang.Integer> listIdsSector)
          Add sectors to the unit
 

Uses of Unit in fr.paris.lutece.plugins.unittree.service.unit
 

Methods in fr.paris.lutece.plugins.unittree.service.unit that return Unit
 Unit UnitService.getRootUnit(boolean bGetSectors)
          Get the root unit
 Unit IUnitService.getRootUnit(boolean bGetIdsSector)
          Get the root unit
 Unit UnitService.getUnit(int nIdUnit, boolean bGetSectors)
          Get the unit
 Unit IUnitService.getUnit(int nIdUnit, boolean bGetIdsSector)
          Get the unit
 Unit UnitService.getUnitByIdUser(int nIdUser, boolean bGetSectors)
          Get the unit by id user
 Unit IUnitService.getUnitByIdUser(int nIdUser, boolean bGetSectors)
          Get the unit by id user
 

Methods in fr.paris.lutece.plugins.unittree.service.unit that return types with arguments of type Unit
 java.util.List<Unit> UnitService.findBySectorId(long lIdSector)
          Find by sector id
 java.util.List<Unit> IUnitService.findBySectorId(long lIdSector)
          Return all the Unit of the Sector
 java.util.List<Unit> UnitService.getAllUnits(boolean bGetSectors)
          Get all units
 java.util.List<Unit> IUnitService.getAllUnits(boolean bGetIdsSector)
          Get all units
 java.util.List<Unit> UnitService.getSubUnits(int nIdUnit, boolean bGetSectors)
          Get the sub units from a given id unit
 java.util.List<Unit> IUnitService.getSubUnits(int nIdUnit, boolean bGetIdsSector)
          Get the sub units from a given id unit
 java.util.List<Unit> UnitService.getUnitsFirstLevel(boolean bGetSectors)
          Get the units first level
 java.util.List<Unit> IUnitService.getUnitsFirstLevel(boolean bGetIdsSector)
          Get the units first level
 

Methods in fr.paris.lutece.plugins.unittree.service.unit with parameters of type Unit
 int UnitService.createUnit(Unit unit)
          Create a unit
 int IUnitService.createUnit(Unit unit)
          Create a unit
 java.util.List<IAction> UnitService.getListActions(java.lang.String strActionType, java.util.Locale locale, Unit unit, fr.paris.lutece.portal.business.user.AdminUser user)
          Get the list of actions
 java.util.List<IAction> IUnitService.getListActions(java.lang.String strActionType, java.util.Locale locale, Unit unit, fr.paris.lutece.portal.business.user.AdminUser user)
          Get the list of actions
 boolean UnitService.isAuthorized(Unit unit, java.lang.String strPermission, fr.paris.lutece.portal.business.user.AdminUser user)
          Check if the given user is authorized to do the action for a given unit.
 boolean IUnitService.isAuthorized(Unit unit, java.lang.String strPermission, fr.paris.lutece.portal.business.user.AdminUser user)
          Check if the given user is authorized to do the action for a given unit.
 boolean UnitService.isParent(Unit unitParent, Unit unitRef)
          Check if the first unit in parameter is parent of the second unit in parameter
 boolean IUnitService.isParent(Unit unitParent, Unit unitRef)
          Check if the first unit in parameter is parent of the second unit in parameter
 void UnitService.updateUnit(Unit unit)
          Update the unit
 void IUnitService.updateUnit(Unit unit)
          Update the unit
 

Uses of Unit in fr.paris.lutece.plugins.unittree.web.action
 

Methods in fr.paris.lutece.plugins.unittree.web.action with parameters of type Unit
 void UnitUserSearchFields.fillModelForUserSearchForm(java.util.List<fr.paris.lutece.portal.business.user.AdminUser> listUsers, java.lang.String strBaseUrl, javax.servlet.http.HttpServletRequest request, java.util.Map<java.lang.String,java.lang.Object> model, Unit unit)
          Fill the model for the user search form
 void IUnitSearchFields.fillModelForUserSearchForm(java.util.List<fr.paris.lutece.portal.business.user.AdminUser> listUsers, java.lang.String strBaseUrl, javax.servlet.http.HttpServletRequest request, java.util.Map<java.lang.String,java.lang.Object> model, Unit unit)
          Fill the model for the user search form
 



Copyright © 2012 Mairie de Paris. All Rights Reserved.