1 50 51 package org.apache.avalon.meta.info.builder; 52 53 import java.io.InputStream ; 54 import java.io.ObjectInputStream ; 55 import org.apache.avalon.meta.info.Service; 56 57 63 public class SerializedServiceCreator 64 implements ServiceCreator 65 { 66 67 74 public Service createService( final String key, final InputStream input ) 75 throws Exception  76 { 77 final ObjectInputStream stream = new ObjectInputStream ( input ); 78 return (Service)stream.readObject(); 79 } 80 } 81 | Popular Tags |