Package org.apache.shindig.social.core.model

Examples of org.apache.shindig.social.core.model.MediaLinkImpl


        return entity;
    }

    public MediaLink convert (ActivityStreamsMediaLink icon) {
        if(icon == null) return null;
        MediaLinkImpl entity = new MediaLinkImpl();
        entity.setDuration(icon.getDuration());
        entity.setHeight(icon.getHeight());
        entity.setOpenSocial(convert(icon.getOpenSocial()));
        entity.setUrl(icon.getUrl());
        entity.setWidth(icon.getWidth());
        return entity;
    }
View Full Code Here


        return entity;
    }

    public MediaLink convert (ActivityStreamsMediaLink icon) {
        if(icon == null) return null;
        MediaLinkImpl entity = new MediaLinkImpl();
        entity.setDuration(icon.getDuration());
        entity.setHeight(icon.getHeight());
        entity.setOpenSocial(convert(icon.getOpenSocial()));
        entity.setUrl(icon.getUrl());
        entity.setWidth(icon.getWidth());
        return entity;
    }
View Full Code Here

TOP

Related Classes of org.apache.shindig.social.core.model.MediaLinkImpl

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.