Interface ConfigurationMapper


  • public interface ConfigurationMapper
    • 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()
      • setAllCustomAttributes

        @Update("UPDATE CONFIGURATION SET CUSTOM_ATTRIBUTES = #{customAttributes}")
        void setAllCustomAttributes​(@Param("customAttributes")
                                    Map<String,​?> customAttributes)