Package org.rioproject.entry

Examples of org.rioproject.entry.StandardServiceType


                               "");
    }

    @Override
    protected ServiceType getServiceType(final String name, final String comment) {
        StandardServiceType sType = new StandardServiceType();
        sType.name = name;
        if(comment!=null)
            sType.description = comment;
        sType.iconName = "icon/rio-service.jpg";
        return sType;
View Full Code Here


            logger.trace("[{}] set state to ADVERTISED", ServiceElementUtil.getLoggingName(context));
        jsbState.setState(ServiceBeanState.ADVERTISED);
    }

    protected ServiceType getServiceType(final String name, final String comment) {
        StandardServiceType sType = new StandardServiceType();
        sType.name = name;
        if(comment!=null)
            sType.description = comment;
        return sType;
    }
View Full Code Here

                               "");
    }

    @Override
    protected ServiceType getServiceType(final String name, final String comment) {
        StandardServiceType sType = new StandardServiceType();
        sType.name = name;
        if(comment!=null)
            sType.description = comment;
        sType.iconName = "icon/rio-service.jpg";
        return sType;
View Full Code Here

TOP

Related Classes of org.rioproject.entry.StandardServiceType

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.