1 26 27 package org.objectweb.openccm.Containers; 28 29 import org.objectweb.openccm.Containers.PCA; 30 import org.objectweb.openccm.Containers.SystemConfiguration; 31 import org.objectweb.openccm.Containers.SystemHomeFinder; 32 import org.objectweb.openccm.Containers.MetaInformation.HomeInstance; 33 34 42 43 public interface HomeServant 44 { 45 48 public SystemConfiguration 49 the_home_configuration(); 50 51 54 public SystemConfiguration 55 the_component_configuration(); 56 57 60 public SystemHomeFinder 61 the_home_finder(); 62 65 66 public HomeInstance 67 the_home_instance(); 68 69 72 public HomeExecutorBase 73 the_home_executor(); 74 75 78 public PCA 79 the_PCA(); 80 81 84 public void 85 the_PCA(PCA pca); 86 87 90 public org.omg.Components.CCMHome 91 the_home_ref(); 92 93 96 public void 97 the_home_ref(org.omg.Components.CCMHome ref); 98 99 102 public org.omg.Components.Cookie 103 the_registration_info(); 104 105 108 public void 109 the_registration_info(org.omg.Components.Cookie cookie); 110 111 117 120 public org.objectweb.openccm.Deployment.ContainerBase 121 the_container_base(); 122 123 126 public void 127 the_container_base(org.objectweb.openccm.Deployment.ContainerBase container); 128 129 132 public void 133 remove() 134 throws org.omg.Components.RemoveFailure; 135 } 136 | Popular Tags |