package com.xool.system; public interface ICoolSystemInit { public String getCurrency(); public void setCurrency(String currency); // The management method public double convert (double amount); // Life cycle method public void create () throws Exception; public void destroy () throws Exception; }