001/* 002 * Copyright 2015-2018 the original author or authors 003 * 004 * This software is licensed under the Apache License, Version 2.0, 005 * the GNU Lesser General Public License version 2 or later ("LGPL") 006 * and the WTFPL. 007 * You may choose either license to govern your use of this software only 008 * upon the condition that you accept all of the terms of either 009 * the Apache License 2.0, the LGPL 2.1+ or the WTFPL. 010 */ 011package org.minidns.hla; 012 013import org.minidns.dnsname.DnsName; 014 015public enum SrvService { 016 017 // @formatter:off 018 xmpp_client, 019 xmpp_server, 020 ; 021 // @formatter:on 022 023 public final DnsName dnsName; 024 025 SrvService() { 026 String enumName = name().replaceAll("_", "-"); 027 dnsName = DnsName.from('_' + enumName); 028 } 029}