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

com.github.manosbatsis.vaultaire.processor.dto.DtoPropertyMapperStrategy.kt Maven / Gradle / Ivy

There is a newer version: 0.56
Show newest version
/*
 * Vaultaire: query DSL and data access utilities for Corda developers.
 * Copyright (C) 2018 Manos Batsis
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
 * USA
 */
package com.github.manosbatsis.vaultaire.processor.dto

import com.github.manosbatsis.kotlin.utils.kapt.dto.strategy.composition.DtoMembersStrategy
import com.squareup.kotlinpoet.TypeName
import javax.lang.model.element.TypeElement
import javax.lang.model.element.VariableElement

// TODO
interface DtoPropertyMapper {

    fun supportsSourceType(strategy: Class<*>): Boolean

}

// TODO
interface DtoPropertyMapperStrategy {

    /** Level 1 filtering */
    fun supportsMapping(strategy: Class<*>): Boolean

    /** Level 1 filtering */
    fun supportsDtoStrategy(strategy: Class<*>): Boolean

    /** Level 2 filtering */
    fun supportsEnclosingTypeElement(typeElement: TypeElement): Boolean

    /** Level 3 filtering */
    fun supportsVariableElement(variableElement: VariableElement): Boolean
    fun toAltConstructorStatement(
            index: Int, variableElement: VariableElement, propertyName: String, propertyType: TypeName, commaOrEmpty: String
    ): DtoMembersStrategy.Statement?

    fun toPatchStatement(variableElement: VariableElement, commaOrEmpty: String): DtoMembersStrategy.Statement?
    fun toMapStatement(variableElement: VariableElement, commaOrEmpty: String): DtoMembersStrategy.Statement?
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy