![JAR search and dependency download from the Maven repository](/logo.png)
com.korwe.kordapt.IdBeanPair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kordapt-gradle-plugin Show documentation
Show all versions of kordapt-gradle-plugin Show documentation
Kordapt is an opensource java framework for easily building in a consistent and modular manner, services that exist on The Core
package com.korwe.kordapt;
import org.springframework.beans.factory.config.BeanDefinition;
/**
* @author Tjad Clark
*/
public class IdBeanPair {
private String id;
private BeanDefinition beanDef;
public IdBeanPair(String id, BeanDefinition beanDef) {
this.id = id;
this.beanDef = beanDef;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public BeanDefinition getBeanDef() {
return beanDef;
}
public void setBeanDef(BeanDefinition beanDef) {
this.beanDef = beanDef;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy