Accessing LDAP Connections
If you create a property named ldapr of type LDAP Connection Resource
Template, TIBCO Business Studio adds the following to the abstract
implementation class:
import org.osoa.sca.annotations.Property;
import javax.naming.ldap.LdapContext;
private LdapContext ldapr;
@Property(name = "ldapr")
public void setLdapr(LdapContext ldapr) {
this.ldapr = ldapr;
}
public LdapContext getLdapr() {
return ldapr;
}
Procedure
Copyright © Cloud Software Group, Inc. All rights reserved.