ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/catalina/startup/HomesUserDatabase.java

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

      
    
Rootfs path

      
    
Size
2767 (2.7 KB)
MD5
0e54e995cdbf4283e1d6897f3d39264d
SHA1
52eba900e27c644142b311457c5eb47adef1a273
SHA256
a4de08b925079f96594751e93666c60333907c5c794861bbde8d1737e3fbfc59
SHA512

      
    
SHA1_git
7accba9baed3f8dd0d35203922706f5ef1175b86
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
HomesUserDatabase.java | 2.7 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.startup; import java.io.File; import java.util.Collections; import java.util.Enumeration; import java.util.HashMap; import java.util.Map; /** * Concrete implementation of the <code>UserDatabase</code> interface considers all directories in a directory whose * pathname is specified to our constructor to be "home" directories for those users. */ public final class HomesUserDatabase implements UserDatabase { /** * The set of home directories for all defined users, keyed by username. */ private final Map<String,String> homes = new HashMap<>(); /** * The UserConfig listener with which we are associated. */ private UserConfig userConfig = null; @Override public UserConfig getUserConfig() { return this.userConfig; } @Override public void setUserConfig(UserConfig userConfig) { this.userConfig = userConfig; init(); } @Override public String getHome(String user) { return homes.get(user); } @Override public Enumeration<String> getUsers() { return Collections.enumeration(homes.keySet()); } /** * Initialize our set of users and home directories. */ private void init() { String homeBase = userConfig.getHomeBase(); File homeBaseDir = new File(homeBase); if (!homeBaseDir.exists() || !homeBaseDir.isDirectory()) { return; } String[] homeBaseFiles = homeBaseDir.list(); if (homeBaseFiles == null) { return; } for (String homeBaseFile : homeBaseFiles) { File homeDir = new File(homeBaseDir, homeBaseFile); if (!homeDir.isDirectory() || !homeDir.canRead()) { continue; } homes.put(homeBaseFile, homeDir.toString()); } } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
39.67
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