PGBuildManager.java 866 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  com.day.cq.wcm.api.Page
 *  org.apache.sling.api.adapter.Adaptable
 */
package com.adobe.cq.mobile.phonegap.impl.build;

import com.adobe.cq.mobile.phonegap.impl.PGException;
import com.adobe.cq.mobile.phonegap.impl.build.metadata.AccountInfo;
import com.adobe.cq.mobile.phonegap.impl.build.metadata.AppInfo;
import com.day.cq.wcm.api.Page;
import org.apache.sling.api.adapter.Adaptable;

public interface PGBuildManager
extends Adaptable {
    public AppInfo createApp(Page var1) throws PGException;

    public AppInfo updateApp(Page var1) throws PGException;

    public AppInfo getApp(Page var1) throws PGException;

    public AccountInfo getAccountProfile(Page var1) throws PGException;

    public AccountInfo getAccountProfile(String var1, String var2) throws PGException;
}