Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for maskEmail (0.23 sec)

  1. src/test/java/org/codelibs/fess/taglib/FessFunctionsTest.java

        }
    
        public void test_maskEmail() {
            String value;
    
            value = FessFunctions.maskEmail(null);
            assertEquals("", value);
    
            value = FessFunctions.maskEmail("");
            assertEquals("", value);
    
            value = FessFunctions.maskEmail("aaa bbb ccc");
            assertEquals("aaa bbb ccc", value);
    
            value = FessFunctions.maskEmail("******@****.***");
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/fe.tld

      </function>
    
      <function>
        <description>Mask e-mail address.</description>
        <name>maskEmail</name>
        <function-class>org.codelibs.fess.taglib.FessFunctions</function-class>
        <function-signature>java.lang.String maskEmail(java.lang.String)</function-signature>
        <example>${fe:maskEmail(doc.content_description)}</example>
      </function>
    
      <function>
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu May 28 07:49:35 GMT 2020
    - 10K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

                    .map(user -> user.hasRoles(roles) || user.hasRoles(ComponentUtil.getFessConfig().getAuthenticationAdminRolesAsArray()))
                    .orElse(false);
        }
    
        public static String maskEmail(final String value) {
            if (value == null) {
                return StringUtil.EMPTY;
            }
            return EMAIL_ADDRESS_PATTERN.matcher(value).replaceAll("******@****.***");
        }
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.9K bytes
    - Viewed (0)
  4. maven-core/src/test/projects/lifecycle-executor/project-with-inheritance/pom.xml

          <otherArchives>
            <otherArchive>http://www.mail-archive.com/******@****.***/</otherArchive>
            <otherArchive>http://www.nabble.com/Maven-Developers-f179.html</otherArchive>
            <otherArchive>http://maven.dev.markmail.org/</otherArchive>
          </otherArchives>
        </mailingList>
        <mailingList>
          <name>Maven User List</name>
          <subscribe>******@****.***</subscribe>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Aug 03 09:29:10 GMT 2023
    - 22.4K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/org/apache/maven/lifecycle/pom.xml

          <otherArchives>
            <otherArchive>http://www.mail-archive.com/******@****.***/</otherArchive>
            <otherArchive>http://www.nabble.com/Maven-Developers-f179.html</otherArchive>
            <otherArchive>http://maven.dev.markmail.org/</otherArchive>
          </otherArchives>
        </mailingList>
        <mailingList>
          <name>Maven User List</name>
          <subscribe>******@****.***</subscribe>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Sat Sep 11 08:52:20 GMT 2021
    - 22.4K bytes
    - Viewed (0)
  6. maven-core/src/test/projects/plugin-manager/project-with-inheritance/pom.xml

          <otherArchives>
            <otherArchive>http://www.mail-archive.com/******@****.***/</otherArchive>
            <otherArchive>http://www.nabble.com/Maven-Developers-f179.html</otherArchive>
            <otherArchive>http://maven.dev.markmail.org/</otherArchive>
          </otherArchives>
        </mailingList>
        <mailingList>
          <name>Maven User List</name>
          <subscribe>******@****.***</subscribe>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Aug 03 09:29:10 GMT 2023
    - 22.4K bytes
    - Viewed (0)
Back to top