Package net.jini.lookup.entry

Examples of net.jini.lookup.entry.ServiceInfo


            peerLogger.warn("Could not prepare peer proxy, not adding as peer", e);
            return;
        }

        /* Get ServiceInfo, determine if we have a version conflict. */
        ServiceInfo serviceInfo = null;
        for(Entry entry : item.attributeSets) {
            if(entry instanceof ServiceInfo) {
                serviceInfo = (ServiceInfo)entry;
                break;
            }
View Full Code Here


        } catch(IOException e) {
            logger.warn("Getting Rio Manifest", e);
        }
        if(build==null)
            build="0";
        return new ServiceInfo(context.getServiceElement().getName(),
                               "Asarian Technologies LLC",
                               "Rio Project",
                               RioVersion.VERSION,
                               "Build "+build,
                               "");
View Full Code Here

                                (startupDelay/1000)+" seconds");
        timeoutTask.cancel();
        if(uiFetcher.exception!=null)
            throw uiFetcher.exception;

        ServiceInfo info = getServiceInfo(attrs);
        if(type!=null || info!=null) {
            JPanel svcTypePanel = new JPanel();
            svcTypePanel.setLayout(new BoxLayout(svcTypePanel, BoxLayout.Y_AXIS));

            ServiceTypePanel typePanel = new ServiceTypePanel();
View Full Code Here

        } catch(IOException e) {
            logger.warn("Getting Rio Manifest", e);
        }
        if(build==null)
            build="0";
        return new ServiceInfo(context.getServiceElement().getName(),
                               "Asarian Technologies LLC",
                               "Rio Project",
                               RioVersion.VERSION,
                               "Build "+build,
                               "");
View Full Code Here

TOP

Related Classes of net.jini.lookup.entry.ServiceInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.