| 1 | package com.hammurapi.eventbus.tests.familyties; |
| 2 | |
| 3 | import com.hammurapi.common.TokenExpander; |
| 4 | import com.hammurapi.eventbus.AbstractEventBus; |
| 5 | import com.hammurapi.eventbus.Introspector; |
| 6 | |
| 7 | /** |
| 8 | * Domain specific introspector with bound generic parameters. |
| 9 | */ |
| 10 | public class FamilyTiesIntrospector extends Introspector<com.hammurapi.eventbus.tests.familyties.model.Relative, com.hammurapi.eventbus.tests.familyties.rules.FamilyTiesRules, Long, AbstractEventBus.Handle<com.hammurapi.eventbus.tests.familyties.model.Relative,Integer,com.hammurapi.eventbus.tests.familyties.rules.FamilyTiesRules,Long>, FamilyTiesEventStore, FamilyTiesEventBus> { |
| 11 | |
| 12 | public FamilyTiesIntrospector(ClassLoader classLoader, TokenExpander tokenExpander) { |
| 13 | super(classLoader, tokenExpander); |
| 14 | } |
| 15 | |
| 16 | } |