14 lines
293 B
Java
14 lines
293 B
Java
package com.baeldung.dependency;
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
@Component
|
|
public class AnotherArbitraryDependency extends ArbitraryDependency {
|
|
|
|
private final String label = "Another Arbitrary Dependency";
|
|
|
|
public String toString() {
|
|
return label;
|
|
}
|
|
}
|