Java Code Examples for sun.security.krb5.PrincipalName#getNameStrings()
The following examples show how to use
sun.security.krb5.PrincipalName#getNameStrings() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: HostAddresses.java From openjdk-jdk8u with GNU General Public License v2.0 | 6 votes |
public HostAddresses(PrincipalName serverPrincipal) throws UnknownHostException, KrbException { String[] components = serverPrincipal.getNameStrings(); if (serverPrincipal.getNameType() != PrincipalName.KRB_NT_SRV_HST || components.length < 2) throw new KrbException(Krb5.KRB_ERR_GENERIC, "Bad name"); String host = components[1]; InetAddress addr[] = InetAddress.getAllByName(host); HostAddress hAddrs[] = new HostAddress[addr.length]; for (int i = 0; i < addr.length; i++) { hAddrs[i] = new HostAddress(addr[i]); } addresses = hAddrs; }
Example 2
Source File: HostAddresses.java From jdk8u-jdk with GNU General Public License v2.0 | 6 votes |
public HostAddresses(PrincipalName serverPrincipal) throws UnknownHostException, KrbException { String[] components = serverPrincipal.getNameStrings(); if (serverPrincipal.getNameType() != PrincipalName.KRB_NT_SRV_HST || components.length < 2) throw new KrbException(Krb5.KRB_ERR_GENERIC, "Bad name"); String host = components[1]; InetAddress addr[] = InetAddress.getAllByName(host); HostAddress hAddrs[] = new HostAddress[addr.length]; for (int i = 0; i < addr.length; i++) { hAddrs[i] = new HostAddress(addr[i]); } addresses = hAddrs; }
Example 3
Source File: Krb5ProxyImpl.java From jdk8u_jdk with GNU General Public License v2.0 | 6 votes |
@Override public String getPrincipalHostName(Principal principal) { if (principal == null) { return null; } String hostName = null; try { PrincipalName princName = new PrincipalName(principal.getName(), PrincipalName.KRB_NT_SRV_HST); String[] nameParts = princName.getNameStrings(); if (nameParts.length >= 2) { hostName = nameParts[1]; } } catch (Exception e) { // ignore } return hostName; }
Example 4
Source File: HostAddresses.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
public HostAddresses(PrincipalName serverPrincipal) throws UnknownHostException, KrbException { String[] components = serverPrincipal.getNameStrings(); if (serverPrincipal.getNameType() != PrincipalName.KRB_NT_SRV_HST || components.length < 2) throw new KrbException(Krb5.KRB_ERR_GENERIC, "Bad name"); String host = components[1]; InetAddress[] addr = InetAddress.getAllByName(host); HostAddress[] hAddrs = new HostAddress[addr.length]; for (int i = 0; i < addr.length; i++) { hAddrs[i] = new HostAddress(addr[i]); } addresses = hAddrs; }
Example 5
Source File: HostAddresses.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
public HostAddresses(PrincipalName serverPrincipal) throws UnknownHostException, KrbException { String[] components = serverPrincipal.getNameStrings(); if (serverPrincipal.getNameType() != PrincipalName.KRB_NT_SRV_HST || components.length < 2) throw new KrbException(Krb5.KRB_ERR_GENERIC, "Bad name"); String host = components[1]; InetAddress addr[] = InetAddress.getAllByName(host); HostAddress hAddrs[] = new HostAddress[addr.length]; for (int i = 0; i < addr.length; i++) { hAddrs[i] = new HostAddress(addr[i]); } addresses = hAddrs; }
Example 6
Source File: HostAddresses.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 6 votes |
public HostAddresses(PrincipalName serverPrincipal) throws UnknownHostException, KrbException { String[] components = serverPrincipal.getNameStrings(); if (serverPrincipal.getNameType() != PrincipalName.KRB_NT_SRV_HST || components.length < 2) throw new KrbException(Krb5.KRB_ERR_GENERIC, "Bad name"); String host = components[1]; InetAddress addr[] = InetAddress.getAllByName(host); HostAddress hAddrs[] = new HostAddress[addr.length]; for (int i = 0; i < addr.length; i++) { hAddrs[i] = new HostAddress(addr[i]); } addresses = hAddrs; }
Example 7
Source File: Krb5ProxyImpl.java From dragonwell8_jdk with GNU General Public License v2.0 | 6 votes |
@Override public String getPrincipalHostName(Principal principal) { if (principal == null) { return null; } String hostName = null; try { PrincipalName princName = new PrincipalName(principal.getName(), PrincipalName.KRB_NT_SRV_HST); String[] nameParts = princName.getNameStrings(); if (nameParts.length >= 2) { hostName = nameParts[1]; } } catch (Exception e) { // ignore } return hostName; }
Example 8
Source File: HostAddresses.java From jdk8u-jdk with GNU General Public License v2.0 | 6 votes |
public HostAddresses(PrincipalName serverPrincipal) throws UnknownHostException, KrbException { String[] components = serverPrincipal.getNameStrings(); if (serverPrincipal.getNameType() != PrincipalName.KRB_NT_SRV_HST || components.length < 2) throw new KrbException(Krb5.KRB_ERR_GENERIC, "Bad name"); String host = components[1]; InetAddress addr[] = InetAddress.getAllByName(host); HostAddress hAddrs[] = new HostAddress[addr.length]; for (int i = 0; i < addr.length; i++) { hAddrs[i] = new HostAddress(addr[i]); } addresses = hAddrs; }
Example 9
Source File: Krb5ProxyImpl.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 6 votes |
@Override public String getPrincipalHostName(Principal principal) { if (principal == null) { return null; } String hostName = null; try { PrincipalName princName = new PrincipalName(principal.getName(), PrincipalName.KRB_NT_SRV_HST); String[] nameParts = princName.getNameStrings(); if (nameParts.length >= 2) { hostName = nameParts[1]; } } catch (Exception e) { // ignore } return hostName; }
Example 10
Source File: HostAddresses.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
public HostAddresses(PrincipalName serverPrincipal) throws UnknownHostException, KrbException { String[] components = serverPrincipal.getNameStrings(); if (serverPrincipal.getNameType() != PrincipalName.KRB_NT_SRV_HST || components.length < 2) throw new KrbException(Krb5.KRB_ERR_GENERIC, "Bad name"); String host = components[1]; InetAddress addr[] = InetAddress.getAllByName(host); HostAddress hAddrs[] = new HostAddress[addr.length]; for (int i = 0; i < addr.length; i++) { hAddrs[i] = new HostAddress(addr[i]); } addresses = hAddrs; }
Example 11
Source File: HostAddresses.java From hottub with GNU General Public License v2.0 | 6 votes |
public HostAddresses(PrincipalName serverPrincipal) throws UnknownHostException, KrbException { String[] components = serverPrincipal.getNameStrings(); if (serverPrincipal.getNameType() != PrincipalName.KRB_NT_SRV_HST || components.length < 2) throw new KrbException(Krb5.KRB_ERR_GENERIC, "Bad name"); String host = components[1]; InetAddress addr[] = InetAddress.getAllByName(host); HostAddress hAddrs[] = new HostAddress[addr.length]; for (int i = 0; i < addr.length; i++) { hAddrs[i] = new HostAddress(addr[i]); } addresses = hAddrs; }
Example 12
Source File: HostAddresses.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
public HostAddresses(PrincipalName serverPrincipal) throws UnknownHostException, KrbException { String[] components = serverPrincipal.getNameStrings(); if (serverPrincipal.getNameType() != PrincipalName.KRB_NT_SRV_HST || components.length < 2) throw new KrbException(Krb5.KRB_ERR_GENERIC, "Bad name"); String host = components[1]; InetAddress addr[] = InetAddress.getAllByName(host); HostAddress hAddrs[] = new HostAddress[addr.length]; for (int i = 0; i < addr.length; i++) { hAddrs[i] = new HostAddress(addr[i]); } addresses = hAddrs; }
Example 13
Source File: HostAddresses.java From dragonwell8_jdk with GNU General Public License v2.0 | 6 votes |
public HostAddresses(PrincipalName serverPrincipal) throws UnknownHostException, KrbException { String[] components = serverPrincipal.getNameStrings(); if (serverPrincipal.getNameType() != PrincipalName.KRB_NT_SRV_HST || components.length < 2) throw new KrbException(Krb5.KRB_ERR_GENERIC, "Bad name"); String host = components[1]; InetAddress addr[] = InetAddress.getAllByName(host); HostAddress hAddrs[] = new HostAddress[addr.length]; for (int i = 0; i < addr.length; i++) { hAddrs[i] = new HostAddress(addr[i]); } addresses = hAddrs; }
Example 14
Source File: Immutable.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) throws Exception { PrincipalName pn1 = new PrincipalName("host/service@REALM"); PrincipalName pn2 = (PrincipalName)pn1.clone(); pn1.getNameStrings()[0] = "http"; if (!pn1.equals(pn2)) { throw new Exception(); } }
Example 15
Source File: Immutable.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) throws Exception { PrincipalName pn1 = new PrincipalName("host/service@REALM"); PrincipalName pn2 = (PrincipalName)pn1.clone(); pn1.getNameStrings()[0] = "http"; if (!pn1.equals(pn2)) { throw new Exception(); } }
Example 16
Source File: Immutable.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) throws Exception { PrincipalName pn1 = new PrincipalName("host/service@REALM"); PrincipalName pn2 = (PrincipalName)pn1.clone(); pn1.getNameStrings()[0] = "http"; if (!pn1.equals(pn2)) { throw new Exception(); } }
Example 17
Source File: Immutable.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) throws Exception { PrincipalName pn1 = new PrincipalName("host/service@REALM"); PrincipalName pn2 = (PrincipalName)pn1.clone(); pn1.getNameStrings()[0] = "http"; if (!pn1.equals(pn2)) { throw new Exception(); } }
Example 18
Source File: Immutable.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) throws Exception { PrincipalName pn1 = new PrincipalName("host/service@REALM"); PrincipalName pn2 = (PrincipalName)pn1.clone(); pn1.getNameStrings()[0] = "http"; if (!pn1.equals(pn2)) { throw new Exception(); } }
Example 19
Source File: Immutable.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) throws Exception { PrincipalName pn1 = new PrincipalName("host/service@REALM"); PrincipalName pn2 = (PrincipalName)pn1.clone(); pn1.getNameStrings()[0] = "http"; if (!pn1.equals(pn2)) { throw new Exception(); } }
Example 20
Source File: Immutable.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) throws Exception { PrincipalName pn1 = new PrincipalName("host/service@REALM"); PrincipalName pn2 = (PrincipalName)pn1.clone(); pn1.getNameStrings()[0] = "http"; if (!pn1.equals(pn2)) { throw new Exception(); } }