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

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

      
    
Rootfs path

      
    
Size
4452 (4.3 KB)
MD5
6a3031b612a5f4cf639afca8fb45c761
SHA1
fcf969c93e2b5daeaf7a7ae16268e1f99eb63551
SHA256
af1078cfa43033e9ad03f34c7239a42f958cedcfcf511fd8bad7b52c5f7903d9
SHA512

      
    
SHA1_git
caf333c3827c43da3498ad901b96dfa47d3ce474
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
MethodExpressionLiteral.java | 4.3 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; import java.io.Externalizable; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; import java.lang.annotation.Annotation; import jakarta.el.ELContext; import jakarta.el.ELException; import jakarta.el.MethodExpression; import jakarta.el.MethodInfo; import jakarta.el.MethodReference; import org.apache.el.util.MessageFactory; import org.apache.el.util.ReflectionUtil; public class MethodExpressionLiteral extends MethodExpression implements Externalizable { private static final Annotation[] EMPTY_ANNOTATION_ARRAY = new Annotation[0]; private static final Object[] EMPTY_OBJECT_ARRAY = new Object[0]; private Class<?> expectedType; private String expr; private Class<?>[] paramTypes; public MethodExpressionLiteral() { // do nothing } public MethodExpressionLiteral(String expr, Class<?> expectedType, Class<?>[] paramTypes) { this.expr = expr; this.expectedType = expectedType; this.paramTypes = paramTypes; } @Override public MethodInfo getMethodInfo(ELContext context) throws ELException { context.notifyBeforeEvaluation(getExpressionString()); MethodInfo result = getMethodInfoInternal(); context.notifyAfterEvaluation(getExpressionString()); return result; } private MethodInfo getMethodInfoInternal() throws ELException { return new MethodInfo(this.expr, this.expectedType, this.paramTypes); } @Override public Object invoke(ELContext context, Object[] params) throws ELException { context.notifyBeforeEvaluation(getExpressionString()); Object result; if (this.expectedType != null) { result = context.convertToType(this.expr, this.expectedType); } else { result = this.expr; } context.notifyAfterEvaluation(getExpressionString()); return result; } @Override public MethodReference getMethodReference(ELContext context) { if (context == null) { throw new NullPointerException(MessageFactory.get("error.context.null")); } context.notifyBeforeEvaluation(getExpressionString()); MethodReference result = new MethodReference(null, getMethodInfoInternal(), EMPTY_ANNOTATION_ARRAY, EMPTY_OBJECT_ARRAY); context.notifyAfterEvaluation(getExpressionString()); return result; } @Override public String getExpressionString() { return this.expr; } @Override public boolean equals(Object obj) { return (obj instanceof MethodExpressionLiteral && this.hashCode() == obj.hashCode()); } @Override public int hashCode() { return this.expr.hashCode(); } @Override public boolean isLiteralText() { return true; } @Override public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { this.expr = in.readUTF(); String type = in.readUTF(); if (!type.isEmpty()) { this.expectedType = ReflectionUtil.forName(type); } this.paramTypes = ReflectionUtil.toTypeArray(((String[]) in.readObject())); } @Override public void writeExternal(ObjectOutput out) throws IOException { out.writeUTF(this.expr); out.writeUTF((this.expectedType != null) ? this.expectedType.getName() : ""); out.writeObject(ReflectionUtil.toTypeNameArray(this.paramTypes)); } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
27.93
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