Package org.cyclos.security.system
Class ChannelConfigurationServiceSecurity
- java.lang.Object
-
- org.cyclos.impl.AbstractServerComponent
-
- org.cyclos.impl.AbstractNetworkedServerComponent
-
- org.cyclos.security.BaseServiceSecurity
-
- org.cyclos.security.CRUDServiceSecurity<ChannelConfigurationDTO,ChannelConfiguration,ChannelConfigurationData,ChannelConfigurationDataParams>
-
- org.cyclos.security.system.ChannelConfigurationServiceSecurity
-
- All Implemented Interfaces:
CRUDService<ChannelConfigurationDTO,ChannelConfigurationData,ChannelConfigurationDataParams>,CRUDWithConfirmationPasswordService<ChannelConfigurationDTO,ChannelConfigurationData,ChannelConfigurationDataParams>,Service,ChannelConfigurationService
@Security public class ChannelConfigurationServiceSecurity extends CRUDServiceSecurity<ChannelConfigurationDTO,ChannelConfiguration,ChannelConfigurationData,ChannelConfigurationDataParams> implements ChannelConfigurationService
Security layer forChannelConfigurationService
-
-
Field Summary
-
Fields inherited from class org.cyclos.security.CRUDServiceSecurity
entityClass
-
Fields inherited from class org.cyclos.impl.AbstractNetworkedServerComponent
authHandler, conversionHandler, customFieldValueHandler, entityManagerHandler, groupsHandler, productsHandler, restBeanPropertyMapping, userLocatorHandler
-
Fields inherited from class org.cyclos.impl.AbstractServerComponent
accountHandler, configurationHandler, dataTranslationHandler, notificationHandler, profileFieldHandler, transactionHandler, translationHandler
-
-
Constructor Summary
Constructors Constructor Description ChannelConfigurationServiceSecurity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidcheckCreateNew(ChannelConfigurationDataParams params)Checks whether creating new entities with the given context parameters is allowed, throwingPermissionDeniedExceptionif notprotected voidcustomizeData(ChannelConfigurationData data)Can be overridden in order to process the returned data object for the given entityprotected booleandoHasManageAccess(ChannelConfiguration entity)Should be implemented in order to return whether the caller is allowed to manage the given entity, for the given operationbooleandoHasViewAccess(ChannelConfiguration entity)Should be implemented in order to return whether the caller is allowed to view the given entity.protected ChannelConfigurationServiceLocalgetImplementation()Should be implemented in order to return the actual implementation of the servicebooleanisAccessible(SessionData sessionData, ChannelConfiguration entity)Must be implemented in order to determine whether the given entity is accessible for the given session data.List<ChannelConfigurationVO>list(ConfigurationVO configurationVO)Returns all channel configurations for the given configuration-
Methods inherited from class org.cyclos.security.CRUDServiceSecurity
canPerformOperation, canViewData, checkManageAccess, checkOperation, checkSave, checkViewAccess, find, getConfirmationPasswordInputForRemove, getData, getDataForNew, getEntityClass, hasManageAccess, hasViewAccess, load, onBeforeSave, remove, removeAll, removeAllWithConfirmationPassword, removeWithConfirmationPassword, resolveEntityCheck, save, saveWithConfirmationPassword
-
Methods inherited from class org.cyclos.security.BaseServiceSecurity
checkGuest, checkId, checkIds, checkInternalName, checkLoggedIn, checkManagesUser, checkRelatesToUser, checkScope, checkVO, checkVOs, doInitialize, getEntityCheckRegistry, getUser, initialize
-
Methods inherited from class org.cyclos.impl.AbstractNetworkedServerComponent
canManage, checkManagesUser, checkPermission, checkRelatesToUser, checkValue, clearAlreadyValidated, getBaseEntityManagerHandler, getConfiguration, getLoggedBasicUser, getLoggedUser, getProducts, getTranslatedName, getTranslatedValue, hasPermission, hasValue, inSameNetwork, inSameNetworkOrGlobal, isAdmin, isAlreadyValidated, isBroker, isGlobalAdmin, isGlobalAdminInNetwork, isGuest, isLoggedIn, isMember, isMemberOnly, isNetworkAdmin, isOperator, isRelatedToUser, isSystem, isUserManager, isUserManagerOf, message, message, permission, permission, permissionOptionalValue, permissionOptionalValue, setAlreadyValidated, toDate, toDateTime, validate
-
Methods inherited from class org.cyclos.impl.AbstractServerComponent
dataTranslationProxy, dataTranslationProxy, delete, detach, doDataTranslationProxy, find, flush, from, getApplicationContext, getFormatter, getFormatter, getFormatter, getLogger, getRemoteAddress, getSessionData, mailContentBuilder, message, message, persist, processBatch, processBatch, refresh, remove, selectFrom, subQuery, update
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.cyclos.services.CRUDService
getData, getDataForNew, load, remove, removeAll, save
-
-
-
-
Method Detail
-
doHasViewAccess
public boolean doHasViewAccess(ChannelConfiguration entity)
Description copied from class:CRUDServiceSecurityShould be implemented in order to return whether the caller is allowed to view the given entity.
-
isAccessible
public boolean isAccessible(SessionData sessionData, ChannelConfiguration entity)
Description copied from class:CRUDServiceSecurityMust be implemented in order to determine whether the given entity is accessible for the given session data. This method shouldn't check the same condition asCRUDServiceSecurity.hasViewAccess(BaseEntity). If the only condition for an entity isCRUDServiceSecurity.hasViewAccess(BaseEntity), this method should return false.- Specified by:
isAccessiblein classCRUDServiceSecurity<ChannelConfigurationDTO,ChannelConfiguration,ChannelConfigurationData,ChannelConfigurationDataParams>
-
list
public List<ChannelConfigurationVO> list(ConfigurationVO configurationVO) throws FrameworkException
Description copied from interface:ChannelConfigurationServiceReturns all channel configurations for the given configuration- Specified by:
listin interfaceChannelConfigurationService- Throws:
FrameworkException
-
checkCreateNew
protected void checkCreateNew(ChannelConfigurationDataParams params)
Description copied from class:CRUDServiceSecurityChecks whether creating new entities with the given context parameters is allowed, throwingPermissionDeniedExceptionif not
-
customizeData
protected void customizeData(ChannelConfigurationData data)
Description copied from class:CRUDServiceSecurityCan be overridden in order to process the returned data object for the given entity
-
doHasManageAccess
protected boolean doHasManageAccess(ChannelConfiguration entity)
Description copied from class:CRUDServiceSecurityShould be implemented in order to return whether the caller is allowed to manage the given entity, for the given operation
-
getImplementation
protected ChannelConfigurationServiceLocal getImplementation()
Description copied from class:CRUDServiceSecurityShould be implemented in order to return the actual implementation of the service
-
-