Package gobo.controller.restore

Source Code of gobo.controller.restore.IndexController

package gobo.controller.restore;

import gobo.AuthSubBase;
import gobo.service.GbSpreadsheetService;

import java.util.List;
import java.util.Map;


public class IndexController extends AuthSubBase {

  @Override
  protected String runAuth() throws Exception {

    GbSpreadsheetService service = new GbSpreadsheetService((String) sessionScope("token"));
    List<Map<String, String>> list = service.getAllSpreadSheets();
    requestScope("list", list);
    return forward("/gobo/restore/index.jsp");
  }
}
TOP

Related Classes of gobo.controller.restore.IndexController

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.