use of org.xdi.ldap.model.SimpleBranch in project oxAuth by GluuFederation.
the class ResourceSetService method addBranch.
public void addBranch() {
SimpleBranch branch = new SimpleBranch();
branch.setOrganizationalUnitName("uma_resource_sets");
branch.setDn(getDnForResourceSet(null));
ldapEntryManager.persist(branch);
}
use of org.xdi.ldap.model.SimpleBranch in project oxAuth by GluuFederation.
the class RptManager method addBranch.
public void addBranch(String clientDn) {
final SimpleBranch branch = new SimpleBranch();
branch.setOrganizationalUnitName(ORGUNIT_OF_RPT);
branch.setDn(branchDn(clientDn));
ldapEntryManager.persist(branch);
}
use of org.xdi.ldap.model.SimpleBranch in project oxAuth by GluuFederation.
the class ClientAuthorizationsService method addBranch.
public void addBranch(final String userInum) {
SimpleBranch branch = new SimpleBranch();
branch.setOrganizationalUnitName("clientAuthorizations");
branch.setDn(getBaseDnForClientAuthorizations(userInum));
ldapEntryManager.persist(branch);
}
use of org.xdi.ldap.model.SimpleBranch in project oxCore by GluuFederation.
the class MetricService method addBranch.
public void addBranch(String branchDn, String ou) {
SimpleBranch branch = new SimpleBranch();
branch.setOrganizationalUnitName(ou);
branch.setDn(branchDn);
ldapEntryManager.persist(branch);
}
use of org.xdi.ldap.model.SimpleBranch in project oxTrust by GluuFederation.
the class ScopeDescriptionService method addBranch.
public void addBranch() {
SimpleBranch branch = new SimpleBranch();
branch.setOrganizationalUnitName("scopes");
branch.setDn(getDnForScopeDescription(null));
ldapEntryManager.persist(branch);
}
Aggregations