FileDocCategorySizeDatePackage
ConvertServiceImpl.javaAPI DocExample2577Thu Mar 16 11:52:40 GMT 2000None

ConvertServiceImpl

public class ConvertServiceImpl extends UnicastRemoteObject implements ConvertServiceProxy

Fields Summary
Constructors Summary
public ConvertServiceImpl()

    
Methods Summary
public java.lang.Stringconvert(int i)

        return new Integer(i).toString();
    
public static voidmain(java.lang.String[] args)

        System.setSecurityManager(new RMISecurityManager());
        String[] groups = new String[] { "" };

        Entry[] attributes = new Entry[3];
        attributes[0] = new Name("Marketing Converter");
        attributes[1] = new Location("4", "4101", "NY/02");
        attributes[2] = new Copyright("AJC Marketing", "9/1999", "Oaks, Wong, Adler, and Mar");

        // Create the instance of the service; the JoinManager will
        // register it and renew its leases with the lookup service
        ConvertServiceImpl csi = (ConvertServiceImpl) new ConvertServiceImpl();
        JoinManager manager = new JoinManager(csi, attributes, groups,
                                              null, null, null);