Package fb4java.beans

Examples of fb4java.beans.BasicUserInfo


     *
     * @return BasicUserInfo object containing viewer's information
     * @see BasicUserInfo
     */
    public BasicUserInfo getMyInfo() {
        BasicUserInfo userInfo = new BasicUserInfo();

        DataRetrievalService dataRetSvc = new DataRetrievalService(this);
        ArrayList<Parameterable> myInfo = new ArrayList<Parameterable>();

        try {
            dataRetSvc.getUserInfo(new Long[] { userId }, myInfo, userInfo.getClass());
        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }

View Full Code Here

TOP

Related Classes of fb4java.beans.BasicUserInfo

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.