Package com.amazonaws.resources.internal.model

Examples of com.amazonaws.resources.internal.model.ActionModel


        if (attributes != null) {
            return false;
        }

        ActionModel action = resourceModel.getLoadAction();
        if (action == null) {
            throw new UnsupportedOperationException(
                "This resource does not support being loaded.");
        }
View Full Code Here


    public ActionResult performAction(
            String name,
            AmazonWebServiceRequest request,
            ResultCapture<?> extractor) {

        ActionModel action = resourceModel.getAction(name);
        if (action == null) {
            throw new UnsupportedOperationException(
                    "Resource does not support the action " + name);
        }
View Full Code Here

    public ActionResult performAction(
            String name,
            AmazonWebServiceRequest request,
            ResultCapture<?> extractor) {

        ActionModel action = model.getAction(name);
        if (action == null) {
            throw new UnsupportedOperationException(
                    "Service does not support the action " + name);
        }
View Full Code Here

TOP

Related Classes of com.amazonaws.resources.internal.model.ActionModel

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.