1 15 package org.apache.hivemind.lib.impl; 16 17 import org.apache.hivemind.impl.BaseLocatable; 18 import org.apache.hivemind.internal.ServicePoint; 19 20 25 public class ServicePropertyFactoryParameter extends BaseLocatable 26 { 27 private ServicePoint _servicePoint; 28 private String _propertyName; 29 30 public String getPropertyName() 31 { 32 return _propertyName; 33 } 34 35 public ServicePoint getServicePoint() 36 { 37 return _servicePoint; 38 } 39 40 public void setPropertyName(String string) 41 { 42 _propertyName = string; 43 } 44 45 public void setServicePoint(ServicePoint servicePoint) 46 { 47 _servicePoint = servicePoint; 48 } 49 50 } 51 | Popular Tags |