1 21 22 package org.apache.derby.iapi.store.access.conglomerate; 23 24 import java.util.Properties ; 25 import org.apache.derby.catalog.UUID; 26 import org.apache.derby.iapi.error.StandardException; 27 import org.apache.derby.iapi.services.monitor.ModuleSupportable; 28 29 35 36 public interface MethodFactory extends ModuleSupportable 37 { 38 41 public static final String MODULE = 42 "org.apache.derby.iapi.store.access.conglomerate.MethodFactory"; 43 44 47 Properties defaultProperties(); 48 49 53 boolean supportsImplementation(String implementationId); 54 55 61 String primaryImplementationType(); 62 63 67 boolean supportsFormat(UUID formatid); 68 69 75 UUID primaryFormat(); 76 } 77 78 | Popular Tags |