Java Reference
In-Depth Information
public String getDomain()
{
return domain;
}
public String getEntryName()
{
return entry.name;
}
public void serviceIDNotify( ServiceID id )
{
this.id = id;
}
public ObjectName preRegister( MBeanServer server,
ObjectName name) throws Exception
{
this.mbs = server;
if( name == null )
{
name =
new ObjectName( mbs.getDefaultDomain() +
":connectorType=JINI" );
}
this.domain = name.getDomain();
return name;
}
public void postRegister (Boolean registrationDone) {}
public void preDeregister() throws Exception {}
public void postDeregister(){}
public void setGroups( String groups[] )
{
if( groups != null )
this.groups = groups;
}
public String[] getGroups()
{
return groups;
}
public void enableConnections()
{
createService();
}
public void setEntryName( String name )
{
Entry old = entry;
this.entry = new Name( name );
if( enabled )
Search WWH ::




Custom Search