Package org.apache.felix.webconsole.bundleinfo

Examples of org.apache.felix.webconsole.bundleinfo.BundleInfo


        // Component #{0} {1}, state {2}
        key = MessageFormat.format(key, new Object[] { String.valueOf(component.getId()), //
                name != null ? name : "", //$NON-NLS-1$
                state, //
        });
        return new BundleInfo(key, webConsoleRoot + "/components/" + component.getId(), //$NON-NLS-1$
            BundleInfoType.LINK, descr);
    }
View Full Code Here


        String name = localization.getResourceBundle( locale ).getString( "services.info.key" ); //$NON-NLS-1$;
        name = MessageFormat.format( name, new Object[]
            { id, Arrays.asList( classes ).toString() } );
        if ( webConsoleRoot == null )
        {
            return new BundleInfo( name, id, BundleInfoType.VALUE, descr );
        }
        return new BundleInfo( name, webConsoleRoot + "/services/" + id, //$NON-NLS-1$
            BundleInfoType.LINK, descr );
    }
View Full Code Here

TOP

Related Classes of org.apache.felix.webconsole.bundleinfo.BundleInfo

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.