1 package org.sapia.soto; 2 3 4 13 public class TestLayer implements Layer { 14 static boolean init; 15 static boolean started; 16 static boolean disposed; 17 18 public void dispose() { 19 disposed = true; 20 } 21 22 public void init(ServiceMetaData meta) throws Exception { 23 init = true; 24 } 25 26 public void start(ServiceMetaData meta) throws Exception { 27 started = true; 28 } 29 } 30 | Popular Tags |