Examples of MediaLinkImpl


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

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
TOP
Copyright © 2018 www.massapi.com. 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.