ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/catalina/users/MemoryUserDatabaseFactory.java

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

      
    
Rootfs path

      
    
Size
4299 (4.2 KB)
MD5
10ae197180725f21f3abf732725dac22
SHA1
f887fdf527023bcae446ea55c3ecb6687a39e09c
SHA256
ffa890a642c2e756758f0e6fd4260b2234cdde87ebe7a1d425dec8e9e6275a59
SHA512

      
    
SHA1_git
0aed839b021a95c83277f7b2ad84cde2a4cd1dde
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
MemoryUserDatabaseFactory.java | 4.2 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.catalina.users; import java.util.Hashtable; import javax.naming.Context; import javax.naming.Name; import javax.naming.RefAddr; import javax.naming.Reference; import javax.naming.spi.ObjectFactory; /** * <p> * JNDI object creation factory for <code>MemoryUserDatabase</code> instances. This makes it convenient to configure a * user database in the global JNDI resources associated with this Catalina instance, and then link to that resource for * web applications that administer the contents of the user database. * </p> * <p> * The <code>MemoryUserDatabase</code> instance is configured based on the following parameter values: * </p> * <ul> * <li><strong>pathname</strong> - Absolute or relative (to the directory path specified by the * <code>catalina.base</code> system property) pathname to the XML file from which our user information is loaded, and * to which it is stored. [conf/tomcat-users.xml]</li> * </ul> * * @since 4.1 */ public class MemoryUserDatabaseFactory implements ObjectFactory { // --------------------------------------------------------- Public Methods /** * <p> * Create and return a new <code>MemoryUserDatabase</code> instance that has been configured according to the * properties of the specified <code>Reference</code>. If the instance cannot be created, return <code>null</code> * instead. * </p> * * @param obj The possibly null object containing location or reference information that can be used in * creating an object * @param name The name of this object relative to <code>nameCtx</code> * @param nameCtx The context relative to which the <code>name</code> parameter is specified, or * <code>null</code> if <code>name</code> is relative to the default initial context * @param environment The possibly null environment that is used in creating this object */ @Override public Object getObjectInstance(Object obj, Name name, Context nameCtx, Hashtable<?,?> environment) throws Exception { // We only know how to deal with <code>javax.naming.Reference</code>s // that specify a class name of "org.apache.catalina.UserDatabase" if (!(obj instanceof Reference ref)) { return null; } if (!"org.apache.catalina.UserDatabase".equals(ref.getClassName())) { return null; } // Create and configure a MemoryUserDatabase instance based on the // RefAddr values associated with this Reference MemoryUserDatabase database = new MemoryUserDatabase(name.toString()); RefAddr ra = ref.get("pathname"); if (ra != null) { database.setPathname(ra.getContent().toString()); } ra = ref.get("readonly"); if (ra != null) { database.setReadonly(Boolean.parseBoolean(ra.getContent().toString())); } ra = ref.get("watchSource"); if (ra != null) { database.setWatchSource(Boolean.parseBoolean(ra.getContent().toString())); } // Return the configured database instance database.open(); // Don't try something we know won't work if (!database.getReadonly()) { database.save(); } return database; } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
23.9
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