1 17 18 package org.apache.geronimo.proxy; 19 20 import java.io.Serializable ; 21 22 import org.apache.geronimo.core.service.Component; 23 import org.apache.geronimo.core.service.Container; 24 25 28 public class SimpleComponent implements Component, Serializable { 29 30 private Container container; 31 private String objectName; 32 33 36 public Container getContainer() { 37 return container; 38 } 39 40 43 public void setContainer(Container container) throws IllegalStateException , IllegalArgumentException { 44 this.container = container; 45 46 } 47 48 51 public String getObjectName() { 52 return objectName; 53 } 54 55 58 public void setObjectName(String objectName) { 59 this.objectName = objectName; 60 } 61 62 } 63 | Popular Tags |