ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/org/apache/el/TesterBeanB.java

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

      
    
Rootfs path

      
    
Size
1597 (1.6 KB)
MD5
93e57669f221d031c90bb66b8d2517c0
SHA1
319247abd3484544d8b0a9668627a8f05cae5aee
SHA256
4260e4daa19a9eab1e8f00de1393d9a47930dbfd2a187aa3daa16eab2207b3d4
SHA512

      
    
SHA1_git
d311254558abc612fea701bb2bf4d480833aa9dd
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
TesterBeanB.java | 1.6 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.el; public class TesterBeanB { private String name; public String getName() { return name; } public void setName(String name) { this.name = name; } public String sayHello() { return "Hello from " + name; } public String sayHello(String to) { return "Hello " + to + " from " + name; } public String echo(String... strings) { if (strings == null) { return null; } StringBuilder sb = new StringBuilder(); for (int i = 0; i < strings.length; i++) { if (i > 0) { sb.append(", "); } sb.append(strings[i]); } return sb.toString(); } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
62.3
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