00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 package org.jaebi.test.server.service;
00012
00013 import org.jaebi.server.service.BackEndHandlerImpl;
00014 import org.jaebi.server.service.exception.BackEndHandlerInitException;
00015
00020 public class MainTestBackEndHandlerImpl {
00021
00025 public static void main(String[] args) {
00026 BackEndHandlerImpl beh = null;
00027 try {
00028 beh = new BackEndHandlerImpl();
00029 } catch ( BackEndHandlerInitException behie ) {
00030 System.out.println("Errore: " + behie);
00031 behie.printStackTrace();
00032 }
00033
00034 System.out.println(beh);
00035 }
00036
00037 }