[
https://issues.apache.org/jira/browse/SYNCOPE-1217?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Filipe Silva updated SYNCOPE-1217:
----------------------------------
Description:
Using a code similar to this
{code:java}
...
testRealm = entityFactory.newEntity(Realm.class);
testRealm.setName('Test');
orgUnitComputadoresRealm.setParent(realmDAO.getRoot();
realmDAO.save(testRealm);
..
{code}
is possible to create a Realm with the same name in the same parent realm
I think an exception should be triggered in the realmDAO.save call
(Or the Database is missing a Unique key)
was:
Using a code similar to this
{{...
testRealm = entityFactory.newEntity(Realm.class);
testRealm.setName('Test');
orgUnitComputadoresRealm.setParent(realmDAO.getRoot();
realmDAO.save(testRealm);
..}}
is possible to create a Realm with the same name in the same parent realm
I think an exception should be triggered in the realmDAO.save call
(Or the Database is missing a Unique key)
> Using the JAVA API is possible to create a Realm with the same name in the
> same parent realm
> --------------------------------------------------------------------------------------------
>
> Key: SYNCOPE-1217
> URL: https://issues.apache.org/jira/browse/SYNCOPE-1217
> Project: Syncope
> Issue Type: Bug
> Reporter: Filipe Silva
> Priority: Trivial
>
> Using a code similar to this
> {code:java}
> ...
> testRealm = entityFactory.newEntity(Realm.class);
> testRealm.setName('Test');
> orgUnitComputadoresRealm.setParent(realmDAO.getRoot();
> realmDAO.save(testRealm);
> ..
> {code}
> is possible to create a Realm with the same name in the same parent realm
> I think an exception should be triggered in the realmDAO.save call
> (Or the Database is missing a Unique key)
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)