Package com.heroku.api.request.sharing

Examples of com.heroku.api.request.sharing.SharingTransfer


     * Transfer the ownership of an application to another user.
     * @param appName App name. See {@link #listApps} for a list of apps that can be used.
     * @param to Username of the person to transfer the app to. This is usually in the form of "user@company.com".
     */
    public void transferApp(String appName, String to) {
        connection.execute(new SharingTransfer(appName, to), apiKey);
    }
View Full Code Here

TOP

Related Classes of com.heroku.api.request.sharing.SharingTransfer

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.