Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for corps (0.02 sec)

  1. CorsFilter.java

    org.codelibs.fess.filter; L17: L18:import java.io.IOException; L19: L20:import org.apache.logging.log4j.LogManager; L21:import org.apache.logging.log4j.Logger; L22:import org.codelibs.core.lang.StringUtil; L23:import org.codelibs.fess.cors.CorsHandler; L24:import org.codelibs.fess.cors.CorsHandlerFactory; L25:import org.codelibs.fess.util.ComponentUtil; L26: L27:import jakarta.servlet.Filter; L28:import jakarta.servlet.FilterChain; L29:import jakarta.servlet.ServletException; L30:import jakarta.servlet.ServletRequest;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      2.6K bytes
  2. fess_cors.xml

    L2:<!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" L3: "http://dbflute.org/meta/lastadi10.dtd"> L4:<components> L5: <component name="corsHandlerFactory" class="org.codelibs.fess.cors.CorsHandlerFactory"> L6: </component> L7: L8: <component name="defaultCorsHandler" class="org.codelibs.fess.cors.DefaultCorsHandler"> L9: </component> L10: L11:</components>...
    github.com/codelibs/fess/src/main/resources/fes...
    Sun Jun 04 05:16:45 UTC 2023
      378 bytes
  3. DefaultCorsHandler.java

    an "AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.cors; L17: L18:import org.codelibs.fess.mylasta.direction.FessConfig; L19:import org.codelibs.fess.util.ComponentUtil; L20: L21:import jakarta.annotation.PostConstruct; L22:import jakarta.servlet.ServletRequest; L23:import jakarta.servlet.ServletResponse;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      2K bytes
  4. CorsHandlerFactory.java

    an "AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.cors; L17: L18:import java.util.HashMap; L19:import java.util.Map; L20: L21:import org.apache.logging.log4j.LogManager; L22:import org.apache.logging.log4j.Logger; L23: L24:public class CorsHandlerFactory { L25: private static final Logger logger = ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.4K bytes
  5. CorsHandler.java

    an "AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.cors; L17: L18:import jakarta.servlet.ServletRequest; L19:import jakarta.servlet.ServletResponse; L20: L21:public abstract class CorsHandler { L22: L23: protected static final String ACCESS_CONTROL_ALLOW_ORIGIN = "Access-Control-Allow-Origin"; L24: L25:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      1.4K bytes
Back to top