ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/naming/ResourceLinkRef.java

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

      
    
Rootfs path

      
    
Size
2125 (2.1 KB)
MD5
97ab07bac5614eb290756ba6676b0bec
SHA1
653c71b83c3f2eb7a17b1020a8b03cb72da3cc33
SHA256
a6dc78a16e54faa620aac1de7498803366725df3d5122ce1e2325fd7e6716a42
SHA512

      
    
SHA1_git
97d026014b28cbc31f55ba28426c98f9d6dce2f6
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
ResourceLinkRef.java | 2.1 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.naming; import java.io.Serial; import javax.naming.StringRefAddr; /** * Represents a reference address to a resource. */ public class ResourceLinkRef extends AbstractRef { @Serial private static final long serialVersionUID = 1L; /** * Default factory for this reference. */ public static final String DEFAULT_FACTORY = org.apache.naming.factory.Constants.DEFAULT_RESOURCE_LINK_FACTORY; /** * Description address type. */ public static final String GLOBALNAME = "globalName"; /** * ResourceLink Reference. * * @param resourceClass Resource class * @param globalName Global name * @param factory The possibly null class name of the object's factory. * @param factoryLocation The possibly null location from which to load the factory (e.g. URL) */ public ResourceLinkRef(String resourceClass, String globalName, String factory, String factoryLocation) { super(resourceClass, factory, factoryLocation); if (globalName != null) { add(new StringRefAddr(GLOBALNAME, globalName)); } } @Override protected String getDefaultFactoryClassName() { return DEFAULT_FACTORY; } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
49.58
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