Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for checkSpecifiedProperty (0.11 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/BsElevateWordToLabel.java

        public String getElevateWordId() {
            checkSpecifiedProperty("elevateWordId");
            return convertEmptyToNull(elevateWordId);
        }
    
        public void setElevateWordId(String value) {
            registerModifiedProperty("elevateWordId");
            this.elevateWordId = value;
        }
    
        public String getLabelTypeId() {
            checkSpecifiedProperty("labelTypeId");
            return convertEmptyToNull(labelTypeId);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/user/bsentity/BsGroup.java

        public Long getGidNumber() {
            checkSpecifiedProperty("gidNumber");
            return gidNumber;
        }
    
        public void setGidNumber(Long value) {
            registerModifiedProperty("gidNumber");
            this.gidNumber = value;
        }
    
        public String getName() {
            checkSpecifiedProperty("name");
            return convertEmptyToNull(name);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/user/bsentity/BsRole.java

        //                                                                            Accessor
        //                                                                            ========
        public String getName() {
            checkSpecifiedProperty("name");
            return convertEmptyToNull(name);
        }
    
        public void setName(String value) {
            registerModifiedProperty("name");
            this.name = value;
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractEntity.java

        public void clearSpecifiedInfo() {
            if (__specifiedProperties != null) {
                __specifiedProperties.clear();
            }
        }
    
        protected void checkSpecifiedProperty(String propertyName) {
            FunCustodial.checkSpecifiedProperty(this, propertyName, __specifiedProperties);
        }
    
        protected void registerSpecifiedProperty(String propertyName) { // basically called by modified property registration
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top