Re: Some problems encountered while testing Syncope CLI

2019-11-22 Thread oh...@yahoo.com
Hi, For the record, I've found one way (NOT a good way) to find the task UUID for a given task name, by using Mysql. The following search will list several attributes (the "id" attribute appears to be the UUID) for a task whose "name" is 'xx': select id,DTYPE,name,RESOURCE_ID from

Re: Why DefaultItemTransformer is removed in 2_1_X ?

2019-11-22 Thread Francesco Chicchiriccò
Hi, about Q1: 2_1_X is compatible with Java 8, hence all Default* classes in 2_0_X were removed in favor of default method in interfaces - for your specific case, compare [1] with [2]. About Q2, you have already found the correct solution: just keep annotating your implementation of [1] as

Why DefaultItemTransformer is removed in 2_1_X ?

2019-11-22 Thread Dmitriy Brashevets
Hi Apache Syncope Team! We use the Syncope 2.0.14 version on our installation. I noticed that org.apache.syncope.core.provisioning.java.data.DefaultItemTransformer was deleted in 2_1_X branch: https://github.com/apache/syncope/commit/5a1a1f06164bb43d641c2cce9dd7dc954ac475f3 . Previously,