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

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

      
    
Rootfs path

      
    
Size
2120 (2.1 KB)
MD5
a93c74939bf77928797fa1e4755d826f
SHA1
6b421905bbb25d8c456c775a26787dbf3ff8b098
SHA256
6045a13289e075ed73e9ae816b41f8a34c1680082371468f88cea2069e6eab53
SHA512

      
    
SHA1_git
16fc8dae89d1f7d4ff40081244d7317c361c12ff
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
AbstractGroup.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.catalina.users; import org.apache.catalina.Group; /** * <p> * Convenience base class for {@link Group} implementations. * </p> * * @since 4.1 */ public abstract class AbstractGroup implements Group { // ----------------------------------------------------- Instance Variables /** * The description of this group. */ protected String description = null; /** * The group name of this group. */ protected String groupname = null; // ------------------------------------------------------------- Properties @Override public String getDescription() { return this.description; } @Override public void setDescription(String description) { this.description = description; } @Override public String getGroupname() { return this.groupname; } @Override public void setGroupname(String groupname) { this.groupname = groupname; } // ------------------------------------------------------ Principal Methods /** * Make the principal name the same as the group name. */ @Override public String getName() { return getGroupname(); } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
55.35
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