Package org.picasaapp.server

Source Code of org.picasaapp.server.AlbumLinkServiceImpl

package org.picasaapp.server;

import org.picasaapp.client.AlbumLink;
import org.picasaapp.client.AlbumLinkService;

import com.google.gwt.user.server.rpc.RemoteServiceServlet;

/**
* The server side implementation of the RPC service.
*/
@SuppressWarnings("serial")
public class AlbumLinkServiceImpl extends RemoteServiceServlet implements
        AlbumLinkService {
    public AlbumLink[] getParentLinks(String username)
            throws IllegalArgumentException {
        // TODO: implement
        AlbumLink[] result = new AlbumLink[1];
        result[0] = new AlbumLink("5550054531924772897",
                "5549056660816869313");
        return result;
    }
}
TOP

Related Classes of org.picasaapp.server.AlbumLinkServiceImpl

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.