Toggle navigation
Home
com.novell.ldap.LDAPEntry to org.apache.directory.api.ldap.model.entry.Entry
No. of Instances - 12
No. of Commits - 1
No. of Projects - {'guacamole-client'}
Hierarchy/Composition: SIBLING
Primitive Info: -
NameSpace: External -> External
Mapping:
Add or Remove Method invocation
logger.debug("User group \"{}\" is missing a name attribute " + "and will be ignored.",entry.getDN())
to
logger.debug("User group \"{}\" is missing a name attribute " + "and will be ignored.",entry.getDn().toString())
userDNs.add(entry.getDN())
to
userDNs.add(entry.getDn())
entry.getDN()
to
entry.getDn().toString()
entry.getDN()
to
entry.getDn().toString()
userDN
to
userDN.toString()
Wrap or Un-wrap
forEach
to
forEach
Cascading Type Change (Different)
LDAPAttributeSet
to
Collection<Attribute>
LDAPAttribute
to
Attribute
Rename Method invocation
getAttributeSet
to
getAttributes
getAttribute
to
get