* @return true/false
*/
public boolean isOwner(UddiEntity entity){
boolean ret = false;
try {
AppConfig instance = AppConfig.getInstance();
if (entity != null) {
if (entity.getAuthorizedName().equals(getAuthorizedName())
&& entity.getNodeId().equals((AppConfig.getConfiguration().getString(Property.JUDDI_NODE_ID)))) {
ret = true;