blob: be63b58e5061183a194810c219da11af1c97f0a2 [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;
import org.apache.syncope.core.persistence.api.dao.AnyObjectDAO;
import org.apache.syncope.core.persistence.api.dao.AnySearchDAO;
import org.apache.syncope.core.persistence.api.dao.AuditConfDAO;
import org.apache.syncope.core.persistence.api.dao.DynRealmDAO;
import org.apache.syncope.core.persistence.api.dao.ExternalResourceDAO;
import org.apache.syncope.core.persistence.api.dao.GroupDAO;
import org.apache.syncope.core.persistence.api.dao.JPAJSONAnyDAO;
import org.apache.syncope.core.persistence.api.dao.PlainAttrDAO;
import org.apache.syncope.core.persistence.api.dao.PlainSchemaDAO;
import org.apache.syncope.core.persistence.api.dao.RealmDAO;
import org.apache.syncope.core.persistence.api.dao.UserDAO;
import org.apache.syncope.core.persistence.api.entity.AnyUtilsFactory;
import org.apache.syncope.core.persistence.api.entity.EntityFactory;
import org.apache.syncope.core.persistence.jpa.dao.PGJPAJSONAnyDAO;
import org.apache.syncope.core.persistence.jpa.dao.PGJPAJSONAnySearchDAO;
import org.apache.syncope.core.persistence.jpa.dao.PGJPAJSONAuditConfDAO;
import org.apache.syncope.core.persistence.jpa.dao.PGJPAJSONPlainSchemaDAO;
import org.apache.syncope.core.persistence.jpa.entity.PGJPAJSONEntityFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Lazy;
@ConditionalOnExpression("#{'${provisioning.quartz.delegate}' matches '.*PostgreSQLDelegate.*'}")
public class PGJPAJSONPersistenceContext extends JPAJSONPersistenceContext {
@ConditionalOnMissingBean(name = "pgJPAJSONEntityFactory")
@Bean
public EntityFactory entityFactory() {
return new PGJPAJSONEntityFactory();
}
@ConditionalOnMissingBean(name = "pgJPAJSONAnyDAO")
@Bean
@Autowired
public JPAJSONAnyDAO anyDAO(final @Lazy PlainSchemaDAO plainSchemaDAO) {
return new PGJPAJSONAnyDAO(plainSchemaDAO);
}
@ConditionalOnMissingBean(name = "pgJPAJSONAnySearchDAO")
@Bean
@Autowired
public AnySearchDAO anySearchDAO(
final @Lazy RealmDAO realmDAO,
final @Lazy DynRealmDAO dynRealmDAO,
final @Lazy UserDAO userDAO,
final @Lazy GroupDAO groupDAO,
final @Lazy AnyObjectDAO anyObjectDAO,
final @Lazy PlainSchemaDAO plainSchemaDAO,
final @Lazy EntityFactory entityFactory,
final AnyUtilsFactory anyUtilsFactory) {
return new PGJPAJSONAnySearchDAO(
realmDAO,
dynRealmDAO,
userDAO,
groupDAO,
anyObjectDAO,
plainSchemaDAO,
entityFactory,
anyUtilsFactory);
}
@ConditionalOnMissingBean(name = "pgJPAJSONAuditConfDAO")
@Bean
public AuditConfDAO auditConfDAO() {
return new PGJPAJSONAuditConfDAO();
}
@ConditionalOnMissingBean(name = "pgJPAJSONPlainSchemaDAO")
@Bean
@Autowired
public PlainSchemaDAO plainSchemaDAO(
final AnyUtilsFactory anyUtilsFactory,
final @Lazy PlainAttrDAO plainAttrDAO,
final @Lazy ExternalResourceDAO resourceDAO) {
return new PGJPAJSONPlainSchemaDAO(anyUtilsFactory, plainAttrDAO, resourceDAO);
}
}