package com.fdkankan.modeling.handler; import java.util.Map; public interface SceneHandler { void handle(Map<String,String> context) throws Exception; void afterHandle(Map<String,String> context) throws Exception; }