blob: 4a8ccd67d8bad63a3e0773c3c9e9b72e153a348b [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.neo4j.entity.policy;
import jakarta.validation.constraints.NotNull;
import java.util.List;
import java.util.SortedSet;
import java.util.TreeSet;
import org.apache.syncope.common.lib.types.IdRepoImplementationType;
import org.apache.syncope.core.persistence.api.entity.Implementation;
import org.apache.syncope.core.persistence.api.entity.policy.AccountPolicy;
import org.apache.syncope.core.persistence.neo4j.entity.Neo4jImplementation;
import org.apache.syncope.core.persistence.neo4j.entity.Neo4jImplementationRelationship;
import org.apache.syncope.core.persistence.neo4j.entity.SortedSetList;
import org.springframework.data.annotation.Transient;
import org.springframework.data.neo4j.core.schema.Node;
import org.springframework.data.neo4j.core.schema.PostLoad;
import org.springframework.data.neo4j.core.schema.Relationship;
@Node(Neo4jAccountPolicy.NODE)
public class Neo4jAccountPolicy extends Neo4jPolicy implements AccountPolicy {
private static final long serialVersionUID = -2767606675667839060L;
public static final String NODE = "AccountPolicy";
public static final String ACCOUNT_POLICY_RULE_REL = "ACCOUNT_POLICY_RULE";
@NotNull
private Boolean propagateSuspension = false;
private int maxAuthenticationAttempts;
@Relationship(type = ACCOUNT_POLICY_RULE_REL, direction = Relationship.Direction.OUTGOING)
private SortedSet<Neo4jImplementationRelationship> rules = new TreeSet<>();
@Transient
private List<Neo4jImplementation> sortedRules = new SortedSetList<>(
rules, Neo4jImplementationRelationship.builder());
@Override
public boolean isPropagateSuspension() {
return propagateSuspension;
}
@Override
public void setPropagateSuspension(final boolean propagateSuspension) {
this.propagateSuspension = propagateSuspension;
}
@Override
public int getMaxAuthenticationAttempts() {
return maxAuthenticationAttempts;
}
@Override
public void setMaxAuthenticationAttempts(final int maxAuthenticationAttempts) {
this.maxAuthenticationAttempts = maxAuthenticationAttempts;
}
@Override
public boolean add(final Implementation rule) {
checkType(rule, Neo4jImplementation.class);
checkImplementationType(rule, IdRepoImplementationType.ACCOUNT_RULE);
return sortedRules.contains((Neo4jImplementation) rule) || sortedRules.add((Neo4jImplementation) rule);
}
@Override
public List<? extends Implementation> getRules() {
return sortedRules;
}
@PostLoad
public void postLoad() {
sortedRules = new SortedSetList<>(rules, Neo4jImplementationRelationship.builder());
}
}