Skip to content

Commit 5d9a0c4

Browse files
committed
Add setters and getters.
1 parent 2e22849 commit 5d9a0c4

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/interfaceclients/AbstractInterfaceClientsFactoryBean.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,28 @@ public void setApplicationContext(ApplicationContext applicationContext) throws
6464

6565
}
6666

67+
public Class<?> getType() {
68+
return this.type;
69+
}
70+
71+
public void setType(Class<?> type) {
72+
this.type = type;
73+
}
74+
75+
public String getBeanName() {
76+
return this.beanName;
77+
}
78+
79+
public void setBeanName(String beanName) {
80+
this.beanName = beanName;
81+
}
82+
83+
public String getClientId() {
84+
return this.clientId;
85+
}
86+
87+
public void setClientId(String clientId) {
88+
this.clientId = clientId;
89+
}
90+
6791
}

0 commit comments

Comments
 (0)