Package pro.taskana.common.internal
Interface ConfigurationMapper
-
public interface ConfigurationMapper
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,Object>getAllCustomAttributes()BooleanisSecurityEnabled()voidsetAllCustomAttributes(Map<String,?> customAttributes)voidsetSecurityEnabled(boolean securityEnabled)
-
-
-
Method Detail
-
isSecurityEnabled
@Select("SELECT ENFORCE_SECURITY FROM CONFIGURATION") Boolean isSecurityEnabled()
-
setSecurityEnabled
@Insert("INSERT INTO CONFIGURATION(ENFORCE_SECURITY) VALUES (#{securityEnabled})") void setSecurityEnabled(@Param("securityEnabled") boolean securityEnabled)
-
getAllCustomAttributes
@Select("SELECT CUSTOM_ATTRIBUTES FROM CONFIGURATION") Map<String,Object> getAllCustomAttributes()
-
-