ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/tomcat/util/net/openssl/OpenSSLConfCmd.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/tomcat/util/net/openssl/OpenSSLConfCmd.java
Status
scanned
Type
file
Name
OpenSSLConfCmd.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
1955 (1.9 KB)
MD5
3425dd4f8f1f4145a0e01fe8708ecbe3
SHA1
9cf1ee7d7771873748f40b2f3bb7fbae8cc4b43d
SHA256
3b896b3bee1c1c8c881025e78887672d45780f74cb855c28307c92c5182f5a65
SHA512

      
    
SHA1_git
9300e5363e7e61521901746a67943f26420b342d
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
OpenSSLConfCmd.java | 1.9 KB |

/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.tomcat.util.net.openssl; import java.io.Serial; import java.io.Serializable; public class OpenSSLConfCmd implements Serializable { // Tomcat / Tomcat Native custom commands. Used internally by Tomcat. Not intended for direct use by users. public static final String NO_OCSP_CHECK = "NO_OCSP_CHECK"; public static final String OCSP_SOFT_FAIL = "OCSP_SOFT_FAIL"; public static final String OCSP_TIMEOUT = "OCSP_TIMEOUT"; public static final String OCSP_VERIFY_FLAGS = "OCSP_VERIFY_FLAGS"; @Serial private static final long serialVersionUID = 1L; private String name = null; private String value = null; public OpenSSLConfCmd() { } public OpenSSLConfCmd(String name, String value) { this.name = name; this.value = value; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
48.18
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9