Searched defs:addrType (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/naming/
H A DStringRefAddr.java65 * @param addrType A non-null string describing the type of the address.
68 public StringRefAddr(String addrType, String addr) { argument
69 super(addrType);
H A DBinaryRefAddr.java76 * @param addrType A non-null string describing the type of the address.
80 public BinaryRefAddr(String addrType, byte[] src) { argument
81 this(addrType, src, 0, src.length);
88 * @param addrType A non-null string describing the type of the address.
96 public BinaryRefAddr(String addrType, byte[] src, int offset, int count) { argument
97 super(addrType);
126 if (addrType.compareTo(target.addrType) == 0) {
151 int hash = addrType.hashCode();
168 StringBuffer str = new StringBuffer("Address Type: " + addrType
[all...]
H A DRefAddr.java63 protected String addrType; field in class:RefAddr
68 * @param addrType A non-null string describing the type of the address.
70 protected RefAddr(String addrType) { argument
71 this.addrType = addrType;
80 return addrType;
108 if (addrType.compareTo(target.addrType) == 0) {
130 ? addrType.hashCode()
131 : addrType
[all...]
H A DReference.java217 * Retrieves the first address that has the address type 'addrType'.
220 * @param addrType The non-null address type for which to find the address.
221 * @return The address in this reference with address type 'addrType;
224 public RefAddr get(String addrType) { argument
229 if (addr.getType().compareTo(addrType) == 0)
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DHostAddress.java61 int addrType; field in class:HostAddress
72 new_hostAddress.addrType = addrType;
83 result = 37*result + addrType;
105 if (addrType != h.addrType ||
139 if (addrType == Krb5.ADDRTYPE_INET ||
140 addrType == Krb5.ADDRTYPE_INET6) {
160 addrType = getAddrType(inetAddress);
205 addrType
[all...]

Completed in 52 milliseconds