blob: 9caded4328c8a7da020dd6ffa52065ca5beb4c85 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.syncope.core.persistence.jpa.entity.policy;
import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
import javax.persistence.CascadeType;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.OneToMany;
import javax.persistence.Table;
import org.apache.syncope.core.persistence.api.entity.AnyType;
import org.apache.syncope.core.persistence.api.entity.policy.PushCorrelationRuleEntity;
import org.apache.syncope.core.persistence.api.entity.policy.PushPolicy;
@Entity
@Table(name = JPAPushPolicy.TABLE)
public class JPAPushPolicy extends AbstractProvisioningPolicy implements PushPolicy {
private static final long serialVersionUID = -5875589156893921113L;
public static final String TABLE = "PushPolicy";
@OneToMany(cascade = CascadeType.ALL, orphanRemoval = true, fetch = FetchType.EAGER, mappedBy = "pushPolicy")
private List<JPAPushCorrelationRuleEntity> correlationRules = new ArrayList<>();
@Override
public boolean add(final PushCorrelationRuleEntity filter) {
checkType(filter, JPAPushCorrelationRuleEntity.class);
return this.correlationRules.add((JPAPushCorrelationRuleEntity) filter);
}
@Override
public Optional<? extends PushCorrelationRuleEntity> getCorrelationRule(final AnyType anyType) {
return correlationRules.stream().
filter(rule -> anyType != null && anyType.equals(rule.getAnyType())).findFirst();
}
@Override
public List<? extends PushCorrelationRuleEntity> getCorrelationRules() {
return correlationRules;
}
}