All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.zodiac.scaff.crud.service.GenericTreeSupportCrudService Maven / Gradle / Ivy

The newest version!
package org.zodiac.scaff.crud.service;

import org.zodiac.fastorm.rdb.mapping.SyncRepository;
import org.zodiac.scaff.api.crud.entity.TreeSortSupportEntity;

public abstract class GenericTreeSupportCrudService,K> implements TreeSortEntityService {

    //@Autowired
    private SyncRepository repository;

    protected GenericTreeSupportCrudService() {
        super();
    }

    protected GenericTreeSupportCrudService(SyncRepository repository) {
        this.repository = repository;
    }

    public GenericTreeSupportCrudService setRepository(SyncRepository repository) {
        this.repository = repository;
        return this;
    }

    @Override
    public SyncRepository getRepository() {
        return repository;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy