use of org.gluu.oxtrust.model.OxAuthSectorIdentifier in project oxTrust by GluuFederation.
the class SectorIdentifierWebResourceTest method getSector.
private OxAuthSectorIdentifier getSector(String name) {
OxAuthSectorIdentifier sector = new OxAuthSectorIdentifier();
sector.setDescription(name);
sector.setRedirectUris(new ArrayList<>());
sector.setId(UUID.randomUUID().toString());
sector.setClientIds(new ArrayList<>());
return sector;
}
Aggregations