Skip to content
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,10 @@
* specific language governing permissions and limitations
* under the License.
*/
import groovy.transform.CompileStatic
import org.apache.syncope.core.provisioning.api.rules.AccountRule
import org.apache.syncope.core.persistence.api.entity.user.LinkedAccount
import org.apache.syncope.core.persistence.api.entity.user.User

@CompileStatic
class MyAccountRule implements AccountRule {

void enforce(String username) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,10 @@
* specific language governing permissions and limitations
* under the License.
*/
import groovy.transform.CompileStatic
import org.apache.syncope.core.persistence.api.attrvalue.PlainAttrValueValidator
import org.apache.syncope.core.persistence.api.entity.PlainAttrValue
import org.apache.syncope.core.persistence.api.entity.PlainSchema

@CompileStatic
class MyAttrValueValidator implements PlainAttrValueValidator {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
import groovy.transform.CompileStatic
import org.apache.syncope.common.lib.command.CommandArgs
import org.apache.syncope.core.provisioning.api.macro.Command

@CompileStatic
class MyCommand implements Command<CommandArgs> {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,10 @@
* specific language governing permissions and limitations
* under the License.
*/
import groovy.transform.CompileStatic
import java.util.List
import org.apache.syncope.common.lib.to.AttributableTO
import org.apache.syncope.core.persistence.api.attrvalue.DropdownValueProvider

@CompileStatic
class MyDropdownValueProvider implements DropdownValueProvider {
List<String> getChoices(AttributableTO attributableTO) {
return []
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
* specific language governing permissions and limitations
* under the License.
*/
import groovy.transform.CompileStatic
import java.util.Set
import org.apache.syncope.common.lib.request.AnyCR
import org.apache.syncope.common.lib.request.AnyUR
Expand All @@ -34,7 +33,6 @@ import org.apache.syncope.core.provisioning.api.pushpull.ProvisioningProfile
import org.apache.syncope.core.provisioning.api.pushpull.InboundActions
import org.identityconnectors.framework.common.objects.LiveSyncDelta

@CompileStatic
class MyInboundActions implements InboundActions {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,11 @@
* specific language governing permissions and limitations
* under the License.
*/
import groovy.transform.CompileStatic
import org.apache.syncope.common.lib.to.Provision
import org.apache.syncope.core.persistence.api.dao.InboundCorrelationRule
import org.apache.syncope.core.persistence.api.dao.search.SearchCond
import org.identityconnectors.framework.common.objects.LiveSyncDelta

@CompileStatic
class MyInboundCorrelationRule implements InboundCorrelationRule {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
* specific language governing permissions and limitations
* under the License.
*/
import groovy.transform.CompileStatic
import java.util.List;
import org.apache.commons.lang3.tuple.Pair
import org.apache.syncope.common.lib.to.EntityTO
Expand All @@ -26,7 +25,6 @@ import org.apache.syncope.core.persistence.api.entity.Any
import org.apache.syncope.core.persistence.api.entity.PlainAttrValue
import org.apache.syncope.core.provisioning.api.data.ItemTransformer

@CompileStatic
class MyItemTransformer implements ItemTransformer {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,11 @@
* specific language governing permissions and limitations
* under the License.
*/
import groovy.transform.CompileStatic
import org.apache.syncope.common.lib.to.Provision
import org.apache.syncope.core.provisioning.api.LiveSyncDeltaMapper
import org.identityconnectors.framework.common.objects.LiveSyncDelta
import org.identityconnectors.framework.common.objects.SyncDelta

@CompileStatic
class MyLiveSyncDeltaMapper implements LiveSyncDeltaMapper {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,12 @@
* specific language governing permissions and limitations
* under the License.
*/
import groovy.transform.CompileStatic
import org.apache.syncope.common.lib.request.AnyCR
import org.apache.syncope.common.lib.request.AnyUR
import org.apache.syncope.common.lib.to.AnyTO
import org.apache.syncope.common.lib.to.PropagationStatus
import org.apache.syncope.core.logic.api.LogicActions

@CompileStatic
class MyLogicActions implements LogicActions {

@Override
Expand Down Expand Up @@ -55,4 +53,4 @@ class MyLogicActions implements LogicActions {
<A extends AnyTO> A afterDelete(A input, List<PropagationStatus> statuses) {
return input;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
* specific language governing permissions and limitations
* under the License.
*/
import groovy.transform.CompileStatic
import java.io.Serializable
import java.util.Map
import java.util.Optional
Expand All @@ -27,7 +26,6 @@ import org.apache.syncope.core.provisioning.api.macro.Command
import org.apache.syncope.core.provisioning.api.macro.MacroActions
import org.apache.syncope.core.provisioning.api.macro.Command.Result

@CompileStatic
class MyMacroActions implements MacroActions {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,10 @@
* specific language governing permissions and limitations
* under the License.
*/
import groovy.transform.CompileStatic
import org.apache.syncope.core.provisioning.api.rules.PasswordRule
import org.apache.syncope.core.persistence.api.entity.user.LinkedAccount
import org.apache.syncope.core.persistence.api.entity.user.User

@CompileStatic
class MyPasswordRule implements PasswordRule {

void enforce(String username, String clearPassword) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
* specific language governing permissions and limitations
* under the License.
*/
import groovy.transform.CompileStatic
import java.util.Optional
import java.util.Set
import org.apache.syncope.common.lib.to.OrgUnit
Expand All @@ -26,7 +25,6 @@ import org.apache.syncope.core.provisioning.api.propagation.PropagationActions
import org.apache.syncope.core.provisioning.api.propagation.PropagationTaskInfo;
import org.identityconnectors.framework.common.objects.ConnectorObject

@CompileStatic
class MyPropagationActions implements PropagationActions {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
import groovy.transform.CompileStatic
import org.apache.syncope.common.lib.to.Provision
import org.apache.syncope.core.provisioning.api.ProvisionSorter

@CompileStatic
class MyProvisionSorter implements ProvisionSorter {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,13 @@
* specific language governing permissions and limitations
* under the License.
*/
import groovy.transform.CompileStatic
import java.util.Set
import org.apache.syncope.common.lib.to.ProvisioningReport
import org.apache.syncope.core.persistence.api.entity.Entity
import org.apache.syncope.core.provisioning.api.job.JobExecutionException
import org.apache.syncope.core.provisioning.api.pushpull.ProvisioningProfile
import org.apache.syncope.core.provisioning.api.pushpull.PushActions

@CompileStatic
class MyPushActions implements PushActions {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,12 @@
* specific language governing permissions and limitations
* under the License.
*/
import groovy.transform.CompileStatic
import org.apache.syncope.common.lib.to.Provision
import org.apache.syncope.core.persistence.api.dao.PushCorrelationRule
import org.apache.syncope.core.persistence.api.entity.Any
import org.apache.syncope.core.persistence.api.entity.ExternalResource
import org.identityconnectors.framework.common.objects.filter.Filter

@CompileStatic
class MyPushCorrelationRule implements PushCorrelationRule {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,12 @@
* specific language governing permissions and limitations
* under the License.
*/
import groovy.transform.CompileStatic
import java.util.Map
import java.util.Set
import org.apache.syncope.core.persistence.api.entity.Any
import org.apache.syncope.core.persistence.api.entity.Notification
import org.apache.syncope.core.provisioning.api.notification.RecipientsProvider

@CompileStatic
class MyRecipientsProvider implements RecipientsProvider {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,11 @@
* specific language governing permissions and limitations
* under the License.
*/
import groovy.transform.CompileStatic
import org.apache.syncope.core.provisioning.api.pushpull.ReconFilterBuilder
import org.identityconnectors.framework.common.objects.ObjectClass
import org.identityconnectors.framework.common.objects.filter.Filter
import org.identityconnectors.framework.impl.api.local.operations.FilteredResultsHandler

@CompileStatic
class MyReconFilterBuilder implements ReconFilterBuilder {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,11 @@
* specific language governing permissions and limitations
* under the License.
*/
import groovy.transform.CompileStatic
import org.apache.syncope.common.lib.report.ReportConf
import org.apache.syncope.core.provisioning.api.job.JobExecutionContext
import org.apache.syncope.core.provisioning.api.job.JobExecutionException
import org.apache.syncope.core.provisioning.api.job.report.ReportJobDelegate

@CompileStatic
class MyReportJobDelegate implements ReportJobDelegate {

void setConf(ReportConf conf) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,11 @@
* specific language governing permissions and limitations
* under the License.
*/
import groovy.transform.CompileStatic
import org.apache.syncope.common.lib.types.TaskType
import org.apache.syncope.core.provisioning.api.job.JobExecutionContext
import org.apache.syncope.core.provisioning.api.job.JobExecutionException
import org.apache.syncope.core.provisioning.api.job.SchedTaskJobDelegate

@CompileStatic
class MySchedTaskJobDelegate implements SchedTaskJobDelegate {

@Override
Expand Down
Loading
Loading