All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ai.platon.pulsar.skeleton.common.domain.DomainSuffix Maven / Gradle / Ivy

/**
 * 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 ai.platon.pulsar.skeleton.common.domain; /** * This class represents the last part of the host name, which is operated by * authoritives, not individuals. This information is needed to find the domain * name of a host. The domain name of a host is defined to be the last part * before the domain suffix, w/o subdomain names. As an example the domain name * of
* http://lucene.apache.org/ *
* is apache.org
* This class holds three fields, domain field represents the * suffix (such as "co.uk") boost is a float for boosting score * of url's with this suffix status field represents domain's * status * * @author Enis Soztutar <[email protected]> * @see TopLevelDomain * @see domain-suffixes.xml */ public class DomainSuffix { public static final float DEFAULT_BOOST = 1.0f; public static final Status DEFAULT_STATUS = Status.IN_USE; private String domain; private Status status; private float boost; public DomainSuffix(String domain, Status status, float boost) { this.domain = domain; this.status = status; this.boost = boost; } public DomainSuffix(String domain) { this(domain, DEFAULT_STATUS, DEFAULT_BOOST); } public String getDomain() { return domain; } public Status getStatus() { return status; } public float getBoost() { return boost; } @Override public String toString() { return domain; } /** * Enumeration of the status of the tld. Please see domain-suffixes.xml. */ public enum Status { INFRASTRUCTURE, SPONSORED, UNSPONSORED, STARTUP, PROPOSED, DELETED, PSEUDO_DOMAIN, DEPRECATED, IN_USE, NOT_IN_USE, REJECTED } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy