1 26 27 28 package org.objectweb.jonathan.apis.binding; 29 30 import org.objectweb.jonathan.apis.kernel.JonathanException; 31 import org.objectweb.jonathan.apis.kernel.Context; 32 import org.objectweb.jonathan.apis.presentation.UnMarshaller; 33 34 45 public interface NamingContext { 46 47 60 Identifier export(Object itf,Context hints) 61 throws ExportException, JonathanException ; 62 63 79 Identifier decode(byte[] data,int offset,int length) 80 throws JonathanException; 81 82 89 Identifier decode(UnMarshaller u) throws JonathanException; 90 } 91 92 93 94 | Popular Tags |