Java Code Examples for java.io.OutputStream#hashCode()
The following examples show how to use
java.io.OutputStream#hashCode() .
These examples are extracted from open source projects.
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 Project: dragonwell8_jdk File: ClientId.java License: GNU General Public License v2.0 | 4 votes |
ClientId(int version, String hostname, int port, String protocol, Control[] bindCtls, OutputStream trace, String socketFactory) { this.version = version; this.hostname = hostname.toLowerCase(Locale.ENGLISH); // ignore case this.port = port; this.protocol = protocol; this.bindCtls = (bindCtls != null ? bindCtls.clone() : null); this.trace = trace; // // Needed for custom socket factory pooling // this.socketFactory = socketFactory; if ((socketFactory != null) && !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) { try { Class<?> socketFactoryClass = Obj.helper.loadClass(socketFactory); Class<?> objClass = Class.forName("java.lang.Object"); this.sockComparator = socketFactoryClass.getMethod( "compare", new Class<?>[]{objClass, objClass}); Method getDefault = socketFactoryClass.getMethod( "getDefault", new Class<?>[]{}); this.factory = (SocketFactory)getDefault.invoke(null, new Object[]{}); } catch (Exception e) { // Ignore it here, the same exceptions are/will be handled by // LdapPoolManager and Connection classes. if (debug) { System.out.println("ClientId received an exception"); e.printStackTrace(); } } } else { isDefaultSockFactory = true; } // The SocketFactory field is not used in the myHash // computation as there is no right way to compute the hash code // for this field. There is no harm in skipping it from the hash // computation myHash = version + port + (trace != null ? trace.hashCode() : 0) + (this.hostname != null ? this.hostname.hashCode() : 0) + (protocol != null ? protocol.hashCode() : 0) + (ctlHash=hashCodeControls(bindCtls)); }
Example 2
Source Project: TencentKona-8 File: ClientId.java License: GNU General Public License v2.0 | 4 votes |
ClientId(int version, String hostname, int port, String protocol, Control[] bindCtls, OutputStream trace, String socketFactory) { this.version = version; this.hostname = hostname.toLowerCase(Locale.ENGLISH); // ignore case this.port = port; this.protocol = protocol; this.bindCtls = (bindCtls != null ? bindCtls.clone() : null); this.trace = trace; // // Needed for custom socket factory pooling // this.socketFactory = socketFactory; if ((socketFactory != null) && !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) { try { Class<?> socketFactoryClass = Obj.helper.loadClass(socketFactory); Class<?> objClass = Class.forName("java.lang.Object"); this.sockComparator = socketFactoryClass.getMethod( "compare", new Class<?>[]{objClass, objClass}); Method getDefault = socketFactoryClass.getMethod( "getDefault", new Class<?>[]{}); this.factory = (SocketFactory)getDefault.invoke(null, new Object[]{}); } catch (Exception e) { // Ignore it here, the same exceptions are/will be handled by // LdapPoolManager and Connection classes. if (debug) { System.out.println("ClientId received an exception"); e.printStackTrace(); } } } else { isDefaultSockFactory = true; } // The SocketFactory field is not used in the myHash // computation as there is no right way to compute the hash code // for this field. There is no harm in skipping it from the hash // computation myHash = version + port + (trace != null ? trace.hashCode() : 0) + (this.hostname != null ? this.hostname.hashCode() : 0) + (protocol != null ? protocol.hashCode() : 0) + (ctlHash=hashCodeControls(bindCtls)); }
Example 3
Source Project: jdk8u60 File: ClientId.java License: GNU General Public License v2.0 | 4 votes |
ClientId(int version, String hostname, int port, String protocol, Control[] bindCtls, OutputStream trace, String socketFactory) { this.version = version; this.hostname = hostname.toLowerCase(Locale.ENGLISH); // ignore case this.port = port; this.protocol = protocol; this.bindCtls = (bindCtls != null ? bindCtls.clone() : null); this.trace = trace; // // Needed for custom socket factory pooling // this.socketFactory = socketFactory; if ((socketFactory != null) && !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) { try { Class<?> socketFactoryClass = Obj.helper.loadClass(socketFactory); Class<?> objClass = Class.forName("java.lang.Object"); this.sockComparator = socketFactoryClass.getMethod( "compare", new Class<?>[]{objClass, objClass}); Method getDefault = socketFactoryClass.getMethod( "getDefault", new Class<?>[]{}); this.factory = (SocketFactory)getDefault.invoke(null, new Object[]{}); } catch (Exception e) { // Ignore it here, the same exceptions are/will be handled by // LdapPoolManager and Connection classes. if (debug) { System.out.println("ClientId received an exception"); e.printStackTrace(); } } } else { isDefaultSockFactory = true; } // The SocketFactory field is not used in the myHash // computation as there is no right way to compute the hash code // for this field. There is no harm in skipping it from the hash // computation myHash = version + port + (trace != null ? trace.hashCode() : 0) + (this.hostname != null ? this.hostname.hashCode() : 0) + (protocol != null ? protocol.hashCode() : 0) + (ctlHash=hashCodeControls(bindCtls)); }
Example 4
Source Project: openjdk-jdk8u File: ClientId.java License: GNU General Public License v2.0 | 4 votes |
ClientId(int version, String hostname, int port, String protocol, Control[] bindCtls, OutputStream trace, String socketFactory) { this.version = version; this.hostname = hostname.toLowerCase(Locale.ENGLISH); // ignore case this.port = port; this.protocol = protocol; this.bindCtls = (bindCtls != null ? bindCtls.clone() : null); this.trace = trace; // // Needed for custom socket factory pooling // this.socketFactory = socketFactory; if ((socketFactory != null) && !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) { try { Class<?> socketFactoryClass = Obj.helper.loadClass(socketFactory); Class<?> objClass = Class.forName("java.lang.Object"); this.sockComparator = socketFactoryClass.getMethod( "compare", new Class<?>[]{objClass, objClass}); Method getDefault = socketFactoryClass.getMethod( "getDefault", new Class<?>[]{}); this.factory = (SocketFactory)getDefault.invoke(null, new Object[]{}); } catch (Exception e) { // Ignore it here, the same exceptions are/will be handled by // LdapPoolManager and Connection classes. if (debug) { System.out.println("ClientId received an exception"); e.printStackTrace(); } } } else { isDefaultSockFactory = true; } // The SocketFactory field is not used in the myHash // computation as there is no right way to compute the hash code // for this field. There is no harm in skipping it from the hash // computation myHash = version + port + (trace != null ? trace.hashCode() : 0) + (this.hostname != null ? this.hostname.hashCode() : 0) + (protocol != null ? protocol.hashCode() : 0) + (ctlHash=hashCodeControls(bindCtls)); }
Example 5
Source Project: openjdk-jdk8u-backup File: ClientId.java License: GNU General Public License v2.0 | 4 votes |
ClientId(int version, String hostname, int port, String protocol, Control[] bindCtls, OutputStream trace, String socketFactory) { this.version = version; this.hostname = hostname.toLowerCase(Locale.ENGLISH); // ignore case this.port = port; this.protocol = protocol; this.bindCtls = (bindCtls != null ? bindCtls.clone() : null); this.trace = trace; // // Needed for custom socket factory pooling // this.socketFactory = socketFactory; if ((socketFactory != null) && !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) { try { Class<?> socketFactoryClass = Obj.helper.loadClass(socketFactory); Class<?> objClass = Class.forName("java.lang.Object"); this.sockComparator = socketFactoryClass.getMethod( "compare", new Class<?>[]{objClass, objClass}); Method getDefault = socketFactoryClass.getMethod( "getDefault", new Class<?>[]{}); this.factory = (SocketFactory)getDefault.invoke(null, new Object[]{}); } catch (Exception e) { // Ignore it here, the same exceptions are/will be handled by // LdapPoolManager and Connection classes. if (debug) { System.out.println("ClientId received an exception"); e.printStackTrace(); } } } else { isDefaultSockFactory = true; } // The SocketFactory field is not used in the myHash // computation as there is no right way to compute the hash code // for this field. There is no harm in skipping it from the hash // computation myHash = version + port + (trace != null ? trace.hashCode() : 0) + (this.hostname != null ? this.hostname.hashCode() : 0) + (protocol != null ? protocol.hashCode() : 0) + (ctlHash=hashCodeControls(bindCtls)); }
Example 6
Source Project: openjdk-jdk9 File: ClientId.java License: GNU General Public License v2.0 | 4 votes |
ClientId(int version, String hostname, int port, String protocol, Control[] bindCtls, OutputStream trace, String socketFactory) { this.version = version; this.hostname = hostname.toLowerCase(Locale.ENGLISH); // ignore case this.port = port; this.protocol = protocol; this.bindCtls = (bindCtls != null ? bindCtls.clone() : null); this.trace = trace; // // Needed for custom socket factory pooling // this.socketFactory = socketFactory; if ((socketFactory != null) && !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) { try { Class<?> socketFactoryClass = Obj.helper.loadClass(socketFactory); this.sockComparator = socketFactoryClass.getMethod( "compare", new Class<?>[]{Object.class, Object.class}); Method getDefault = socketFactoryClass.getMethod( "getDefault", new Class<?>[]{}); this.factory = (SocketFactory)getDefault.invoke(null, new Object[]{}); } catch (Exception e) { // Ignore it here, the same exceptions are/will be handled by // LdapPoolManager and Connection classes. if (debug) { System.out.println("ClientId received an exception"); e.printStackTrace(); } } } else { isDefaultSockFactory = true; } // The SocketFactory field is not used in the myHash // computation as there is no right way to compute the hash code // for this field. There is no harm in skipping it from the hash // computation myHash = version + port + (trace != null ? trace.hashCode() : 0) + (this.hostname != null ? this.hostname.hashCode() : 0) + (protocol != null ? protocol.hashCode() : 0) + (ctlHash=hashCodeControls(bindCtls)); }
Example 7
Source Project: jdk8u-jdk File: ClientId.java License: GNU General Public License v2.0 | 4 votes |
ClientId(int version, String hostname, int port, String protocol, Control[] bindCtls, OutputStream trace, String socketFactory) { this.version = version; this.hostname = hostname.toLowerCase(Locale.ENGLISH); // ignore case this.port = port; this.protocol = protocol; this.bindCtls = (bindCtls != null ? bindCtls.clone() : null); this.trace = trace; // // Needed for custom socket factory pooling // this.socketFactory = socketFactory; if ((socketFactory != null) && !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) { try { Class<?> socketFactoryClass = Obj.helper.loadClass(socketFactory); Class<?> objClass = Class.forName("java.lang.Object"); this.sockComparator = socketFactoryClass.getMethod( "compare", new Class<?>[]{objClass, objClass}); Method getDefault = socketFactoryClass.getMethod( "getDefault", new Class<?>[]{}); this.factory = (SocketFactory)getDefault.invoke(null, new Object[]{}); } catch (Exception e) { // Ignore it here, the same exceptions are/will be handled by // LdapPoolManager and Connection classes. if (debug) { System.out.println("ClientId received an exception"); e.printStackTrace(); } } } else { isDefaultSockFactory = true; } // The SocketFactory field is not used in the myHash // computation as there is no right way to compute the hash code // for this field. There is no harm in skipping it from the hash // computation myHash = version + port + (trace != null ? trace.hashCode() : 0) + (this.hostname != null ? this.hostname.hashCode() : 0) + (protocol != null ? protocol.hashCode() : 0) + (ctlHash=hashCodeControls(bindCtls)); }
Example 8
Source Project: hottub File: ClientId.java License: GNU General Public License v2.0 | 4 votes |
ClientId(int version, String hostname, int port, String protocol, Control[] bindCtls, OutputStream trace, String socketFactory) { this.version = version; this.hostname = hostname.toLowerCase(Locale.ENGLISH); // ignore case this.port = port; this.protocol = protocol; this.bindCtls = (bindCtls != null ? bindCtls.clone() : null); this.trace = trace; // // Needed for custom socket factory pooling // this.socketFactory = socketFactory; if ((socketFactory != null) && !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) { try { Class<?> socketFactoryClass = Obj.helper.loadClass(socketFactory); Class<?> objClass = Class.forName("java.lang.Object"); this.sockComparator = socketFactoryClass.getMethod( "compare", new Class<?>[]{objClass, objClass}); Method getDefault = socketFactoryClass.getMethod( "getDefault", new Class<?>[]{}); this.factory = (SocketFactory)getDefault.invoke(null, new Object[]{}); } catch (Exception e) { // Ignore it here, the same exceptions are/will be handled by // LdapPoolManager and Connection classes. if (debug) { System.out.println("ClientId received an exception"); e.printStackTrace(); } } } else { isDefaultSockFactory = true; } // The SocketFactory field is not used in the myHash // computation as there is no right way to compute the hash code // for this field. There is no harm in skipping it from the hash // computation myHash = version + port + (trace != null ? trace.hashCode() : 0) + (this.hostname != null ? this.hostname.hashCode() : 0) + (protocol != null ? protocol.hashCode() : 0) + (ctlHash=hashCodeControls(bindCtls)); }
Example 9
Source Project: openjdk-8-source File: ClientId.java License: GNU General Public License v2.0 | 4 votes |
ClientId(int version, String hostname, int port, String protocol, Control[] bindCtls, OutputStream trace, String socketFactory) { this.version = version; this.hostname = hostname.toLowerCase(Locale.ENGLISH); // ignore case this.port = port; this.protocol = protocol; this.bindCtls = (bindCtls != null ? bindCtls.clone() : null); this.trace = trace; // // Needed for custom socket factory pooling // this.socketFactory = socketFactory; if ((socketFactory != null) && !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) { try { Class<?> socketFactoryClass = Obj.helper.loadClass(socketFactory); Class<?> objClass = Class.forName("java.lang.Object"); this.sockComparator = socketFactoryClass.getMethod( "compare", new Class<?>[]{objClass, objClass}); Method getDefault = socketFactoryClass.getMethod( "getDefault", new Class<?>[]{}); this.factory = (SocketFactory)getDefault.invoke(null, new Object[]{}); } catch (Exception e) { // Ignore it here, the same exceptions are/will be handled by // LdapPoolManager and Connection classes. if (debug) { System.out.println("ClientId received an exception"); e.printStackTrace(); } } } else { isDefaultSockFactory = true; } // The SocketFactory field is not used in the myHash // computation as there is no right way to compute the hash code // for this field. There is no harm in skipping it from the hash // computation myHash = version + port + (trace != null ? trace.hashCode() : 0) + (this.hostname != null ? this.hostname.hashCode() : 0) + (protocol != null ? protocol.hashCode() : 0) + (ctlHash=hashCodeControls(bindCtls)); }
Example 10
Source Project: openjdk-8 File: ClientId.java License: GNU General Public License v2.0 | 4 votes |
ClientId(int version, String hostname, int port, String protocol, Control[] bindCtls, OutputStream trace, String socketFactory) { this.version = version; this.hostname = hostname.toLowerCase(Locale.ENGLISH); // ignore case this.port = port; this.protocol = protocol; this.bindCtls = (bindCtls != null ? bindCtls.clone() : null); this.trace = trace; // // Needed for custom socket factory pooling // this.socketFactory = socketFactory; if ((socketFactory != null) && !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) { try { Class<?> socketFactoryClass = Obj.helper.loadClass(socketFactory); Class<?> objClass = Class.forName("java.lang.Object"); this.sockComparator = socketFactoryClass.getMethod( "compare", new Class<?>[]{objClass, objClass}); Method getDefault = socketFactoryClass.getMethod( "getDefault", new Class<?>[]{}); this.factory = (SocketFactory)getDefault.invoke(null, new Object[]{}); } catch (Exception e) { // Ignore it here, the same exceptions are/will be handled by // LdapPoolManager and Connection classes. if (debug) { System.out.println("ClientId received an exception"); e.printStackTrace(); } } } else { isDefaultSockFactory = true; } // The SocketFactory field is not used in the myHash // computation as there is no right way to compute the hash code // for this field. There is no harm in skipping it from the hash // computation myHash = version + port + (trace != null ? trace.hashCode() : 0) + (this.hostname != null ? this.hostname.hashCode() : 0) + (protocol != null ? protocol.hashCode() : 0) + (ctlHash=hashCodeControls(bindCtls)); }
Example 11
Source Project: jdk8u_jdk File: ClientId.java License: GNU General Public License v2.0 | 4 votes |
ClientId(int version, String hostname, int port, String protocol, Control[] bindCtls, OutputStream trace, String socketFactory) { this.version = version; this.hostname = hostname.toLowerCase(Locale.ENGLISH); // ignore case this.port = port; this.protocol = protocol; this.bindCtls = (bindCtls != null ? bindCtls.clone() : null); this.trace = trace; // // Needed for custom socket factory pooling // this.socketFactory = socketFactory; if ((socketFactory != null) && !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) { try { Class<?> socketFactoryClass = Obj.helper.loadClass(socketFactory); Class<?> objClass = Class.forName("java.lang.Object"); this.sockComparator = socketFactoryClass.getMethod( "compare", new Class<?>[]{objClass, objClass}); Method getDefault = socketFactoryClass.getMethod( "getDefault", new Class<?>[]{}); this.factory = (SocketFactory)getDefault.invoke(null, new Object[]{}); } catch (Exception e) { // Ignore it here, the same exceptions are/will be handled by // LdapPoolManager and Connection classes. if (debug) { System.out.println("ClientId received an exception"); e.printStackTrace(); } } } else { isDefaultSockFactory = true; } // The SocketFactory field is not used in the myHash // computation as there is no right way to compute the hash code // for this field. There is no harm in skipping it from the hash // computation myHash = version + port + (trace != null ? trace.hashCode() : 0) + (this.hostname != null ? this.hostname.hashCode() : 0) + (protocol != null ? protocol.hashCode() : 0) + (ctlHash=hashCodeControls(bindCtls)); }
Example 12
Source Project: jdk8u-jdk File: ClientId.java License: GNU General Public License v2.0 | 4 votes |
ClientId(int version, String hostname, int port, String protocol, Control[] bindCtls, OutputStream trace, String socketFactory) { this.version = version; this.hostname = hostname.toLowerCase(Locale.ENGLISH); // ignore case this.port = port; this.protocol = protocol; this.bindCtls = (bindCtls != null ? bindCtls.clone() : null); this.trace = trace; // // Needed for custom socket factory pooling // this.socketFactory = socketFactory; if ((socketFactory != null) && !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) { try { Class<?> socketFactoryClass = Obj.helper.loadClass(socketFactory); Class<?> objClass = Class.forName("java.lang.Object"); this.sockComparator = socketFactoryClass.getMethod( "compare", new Class<?>[]{objClass, objClass}); Method getDefault = socketFactoryClass.getMethod( "getDefault", new Class<?>[]{}); this.factory = (SocketFactory)getDefault.invoke(null, new Object[]{}); } catch (Exception e) { // Ignore it here, the same exceptions are/will be handled by // LdapPoolManager and Connection classes. if (debug) { System.out.println("ClientId received an exception"); e.printStackTrace(); } } } else { isDefaultSockFactory = true; } // The SocketFactory field is not used in the myHash // computation as there is no right way to compute the hash code // for this field. There is no harm in skipping it from the hash // computation myHash = version + port + (trace != null ? trace.hashCode() : 0) + (this.hostname != null ? this.hostname.hashCode() : 0) + (protocol != null ? protocol.hashCode() : 0) + (ctlHash=hashCodeControls(bindCtls)); }
Example 13
Source Project: jdk8u-dev-jdk File: ClientId.java License: GNU General Public License v2.0 | 4 votes |
ClientId(int version, String hostname, int port, String protocol, Control[] bindCtls, OutputStream trace, String socketFactory) { this.version = version; this.hostname = hostname.toLowerCase(Locale.ENGLISH); // ignore case this.port = port; this.protocol = protocol; this.bindCtls = (bindCtls != null ? bindCtls.clone() : null); this.trace = trace; // // Needed for custom socket factory pooling // this.socketFactory = socketFactory; if ((socketFactory != null) && !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) { try { Class<?> socketFactoryClass = Obj.helper.loadClass(socketFactory); Class<?> objClass = Class.forName("java.lang.Object"); this.sockComparator = socketFactoryClass.getMethod( "compare", new Class<?>[]{objClass, objClass}); Method getDefault = socketFactoryClass.getMethod( "getDefault", new Class<?>[]{}); this.factory = (SocketFactory)getDefault.invoke(null, new Object[]{}); } catch (Exception e) { // Ignore it here, the same exceptions are/will be handled by // LdapPoolManager and Connection classes. if (debug) { System.out.println("ClientId received an exception"); e.printStackTrace(); } } } else { isDefaultSockFactory = true; } // The SocketFactory field is not used in the myHash // computation as there is no right way to compute the hash code // for this field. There is no harm in skipping it from the hash // computation myHash = version + port + (trace != null ? trace.hashCode() : 0) + (this.hostname != null ? this.hostname.hashCode() : 0) + (protocol != null ? protocol.hashCode() : 0) + (ctlHash=hashCodeControls(bindCtls)); }