Add template for assignment 2
[pub/jan/dst18.git] / ass2-di / src / test / java / dst / ass2 / di / type / SimpleSingleton.java
1 package dst.ass2.di.type;
2
3 import static dst.ass2.di.annotation.Scope.SINGLETON;
4
5 import dst.ass2.di.annotation.Component;
6 import dst.ass2.di.annotation.ComponentId;
7
8 @Component(scope = SINGLETON)
9 public class SimpleSingleton {
10     @ComponentId
11     public Long id;
12 }