package com.alterdekim.game.service; import com.alterdekim.flash.decompiler.mapper.OutputObjectCallback; import com.alterdekim.game.entity.GoodClubDancefloor; import com.alterdekim.game.repository.GoodClubDancefloorRepository; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @Service public class GCDService implements OutputObjectCallback { @Autowired private GoodClubDancefloorRepository repository; @Override public void onOutputObjectReady(Object o) { this.repository.save((GoodClubDancefloor) o); } }