com.novell.ldap.LDAPConnection.getConnectionName()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(0.9k)|赞(0)|评价(0)|浏览(133)

本文整理了Java中com.novell.ldap.LDAPConnection.getConnectionName()方法的一些代码示例,展示了LDAPConnection.getConnectionName()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。LDAPConnection.getConnectionName()方法的具体详情如下:
包路径:com.novell.ldap.LDAPConnection
类名称:LDAPConnection
方法名:getConnectionName

LDAPConnection.getConnectionName介绍

[英]Return the Connection object name associated with this LDAPConnection
[中]返回与此LDAPConnection关联的连接对象名称

代码示例

代码示例来源:origin: com.novell.ldap/jldap

Debug.trace( Debug.referrals, "\t" + name +
    "Disconnecting " +
    rconn.getConnectionName());
if( Debug.LDAP_DEBUG) {
  Debug.trace( Debug.referrals, "\t" + name +
    "Disconnect failed for " + rconn.getConnectionName());

代码示例来源:origin: stackoverflow.com

String con_name=c.getConnectionName();
long time=c.getConnectTime();
SimpleDateFormat formatter = new SimpleDateFormat("dd-MM-yy HH:mm:ss");

相关文章