Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for setBusinessCategory (0.11 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/opensearch/user/bsentity/BsUser.java

        public String getBusinessCategory() {
            checkSpecifiedProperty("businessCategory");
            return convertEmptyToNull(businessCategory);
        }
    
        public void setBusinessCategory(String value) {
            registerModifiedProperty("businessCategory");
            this.businessCategory = value;
        }
    
        public String getCarLicense() {
            checkSpecifiedProperty("carLicense");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 22.9K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/opensearch/user/bsentity/dbmeta/UserDbm.java

        protected final Map<String, PropertyGateway> _epgMap = newHashMap();
        {
            setupEpg(_epgMap, et -> ((User) et).getBusinessCategory(), (et, vl) -> ((User) et).setBusinessCategory(DfTypeUtil.toString(vl)),
                    "businessCategory");
            setupEpg(_epgMap, et -> ((User) et).getCarLicense(), (et, vl) -> ((User) et).setCarLicense(DfTypeUtil.toString(vl)), "carLicense");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 27K bytes
    - Click Count (0)
Back to Top