ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/catalina/tribes/membership/StaticMember.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/catalina/tribes/membership/StaticMember.java
Status
scanned
Type
file
Name
StaticMember.java
Extension
.java
Programming language
Java
Mime type
text/x-c
File type
C source, ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
2839 (2.8 KB)
MD5
130a4ac994a548c8b6976c65dab48198
SHA1
20e6f86aeb22f2ce2da4eed63f4e178d0544d2b3
SHA256
a67e4f3f255ada95e17074db8c3175e5b7b80fe779c9f2959ec0238406fbd9a7
SHA512

      
    
SHA1_git
d6273f72b50914e418a07087b7358c3ad0ff55b9
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
StaticMember.java | 2.8 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.tribes.membership; import java.io.IOException; import org.apache.catalina.tribes.util.Arrays; public class StaticMember extends MemberImpl { public StaticMember() { super(); } public StaticMember(String host, int port, long aliveTime) throws IOException { super(host, port, aliveTime); } public StaticMember(String host, int port, long aliveTime, byte[] payload) throws IOException { super(host, port, aliveTime, payload); } /** * @param host String, either in byte array string format, like {214,116,1,3} or as a regular hostname, 127.0.0.1 or * tomcat01.mydomain.com */ public void setHost(String host) { if (host == null) { return; } if (host.startsWith("{")) { setHost(Arrays.fromString(host)); } else { try { setHostname(host); } catch (IOException ioe) { throw new RuntimeException(ioe); } } } /** * @param domain String, either in byte array string format, like {214,116,1,3} or as a regular string value like * 'mydomain'. The latter will be converted using ISO-8859-1 encoding */ public void setDomain(String domain) { if (domain == null) { return; } if (domain.startsWith("{")) { setDomain(Arrays.fromString(domain)); } else { setDomain(Arrays.convert(domain)); } } /** * @param id String, must be in byte array string format, like {214,116,1,3} and exactly 16 bytes long */ public void setUniqueId(String id) { byte[] uuid = Arrays.fromString(id); if (uuid == null || uuid.length != 16) { throw new RuntimeException(sm.getString("staticMember.invalid.uuidLength", id)); } setUniqueId(uuid); } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
36.5
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