blob: 6b09c7d1469d8746ab51323e7d34534e42bf290b [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.anyobject;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.stream.Collectors;
import javax.persistence.Entity;
import javax.persistence.EntityListeners;
import javax.persistence.Lob;
import javax.persistence.Table;
import javax.persistence.Transient;
import org.apache.syncope.core.persistence.api.entity.Membership;
import org.apache.syncope.core.persistence.api.entity.anyobject.AMembership;
import org.apache.syncope.core.persistence.api.entity.anyobject.APlainAttr;
import org.apache.syncope.core.persistence.api.entity.anyobject.AnyObject;
import org.apache.syncope.core.persistence.api.entity.JSONPlainAttr;
import org.apache.syncope.core.persistence.api.entity.JSONAttributable;
import org.apache.syncope.core.persistence.jpa.validation.entity.JPAJSONAttributableCheck;
@Entity
@Table(name = JPAAnyObject.TABLE)
@EntityListeners({ JPAJSONAnyObjectListener.class })
@JPAJSONAttributableCheck
public class JPAJSONAnyObject extends JPAAnyObject implements JSONAttributable<AnyObject>, AnyObject {
private static final long serialVersionUID = -8543654943709531885L;
@Lob
private String plainAttrs;
@Transient
private final List<JPAJSONAPlainAttr> plainAttrList = new ArrayList<>();
@Override
public String getPlainAttrsJSON() {
return plainAttrs;
}
@Override
public void setPlainAttrsJSON(final String plainAttrs) {
this.plainAttrs = plainAttrs;
}
@Override
public List<JPAJSONAPlainAttr> getPlainAttrList() {
return plainAttrList;
}
@Override
public boolean add(final JSONPlainAttr<AnyObject> attr) {
return add((APlainAttr) attr);
}
@Override
public boolean add(final APlainAttr attr) {
checkType(attr, JPAJSONAPlainAttr.class);
return plainAttrList.add((JPAJSONAPlainAttr) attr);
}
@Override
public boolean remove(final APlainAttr attr) {
return plainAttrList.removeIf(jsonAttr -> jsonAttr.getSchemaKey().equals(attr.getSchema().getKey())
&& Objects.equals(jsonAttr.getMembershipKey(), ((JPAJSONAPlainAttr) attr).getMembershipKey()));
}
@Override
protected List<? extends APlainAttr> internalGetPlainAttrs() {
return plainAttrList;
}
@Override
public List<? extends APlainAttr> getPlainAttrs() {
return plainAttrList.stream().
filter(attr -> attr.getMembershipKey() == null).
collect(Collectors.toList());
}
@Override
public Optional<? extends APlainAttr> getPlainAttr(final String plainSchema) {
return plainAttrList.stream().
filter(attr -> attr.getSchemaKey() != null && attr.getSchemaKey().equals(plainSchema)
&& attr.getMembershipKey() == null).
findFirst();
}
@Override
public Optional<? extends APlainAttr> getPlainAttr(final String plainSchema, final Membership<?> membership) {
return plainAttrList.stream().
filter(attr -> attr.getSchemaKey() != null && attr.getSchemaKey().equals(plainSchema)
&& attr.getMembershipKey() != null && attr.getMembershipKey().equals(membership.getKey())).
findFirst();
}
@Override
public boolean remove(final AMembership membership) {
plainAttrList.removeIf(attr -> attr.getMembershipKey() != null
&& attr.getMembershipKey().equals(membership.getKey()));
return super.remove(membership);
}
}