Package org.sf.bee.commons.net.shorturl.impl

Examples of org.sf.bee.commons.net.shorturl.impl.TinyUrl


    private IURLShortener getService(final String serviceId) {
        synchronized (_services) {
            final Class srvcClass = _services.get(serviceId);
            final IURLShortener result = this.createService(srvcClass);
            return null != result ? result : new TinyUrl();
        }
    }
View Full Code Here

TOP

Related Classes of org.sf.bee.commons.net.shorturl.impl.TinyUrl

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.