Package org.nimbustools.api.repr

Examples of org.nimbustools.api.repr.Caller


            throws RemoteException {

        if (req == null) {
            throw new RemoteException("CancelSpotInstanceRequestsType request is missing");
        }
        final Caller caller = this.container.getCaller();
        return this.cancelSI.cancelSIRequests(req, caller, this.manager);
    }
View Full Code Here


            DescribeSpotInstanceRequestsType req)
            throws RemoteException {
        if (req == null) {
            throw new RemoteException("CancelSpotInstanceRequestsType request is missing");
        }
        final Caller caller = this.container.getCaller();
        return this.describeSI.describeSIRequests(req, caller, manager);  
    }
View Full Code Here

    public CreateKeyPairResponseType createKeyPair(CreateKeyPairType req)
            throws RemoteException {

        // no use proceeding if these calls fail:
        final Caller caller = this.container.getCaller();
        final String ownerID;
        try {
            ownerID = this.container.getOwnerID(caller);
        } catch (CannotTranslateException e) {
            throw new RemoteException(e.getMessage(), e);
View Full Code Here

    public ImportKeyPairResponseType importKeyPair(ImportKeyPairType req)
            throws RemoteException {

        // no use proceeding if these calls fail:
        final Caller caller = this.container.getCaller();
        final String ownerID;
        try {
            ownerID = this.container.getOwnerID(caller);
        } catch (CannotTranslateException e) {
            throw new RemoteException(e.getMessage(), e);
View Full Code Here

    public DescribeKeyPairsResponseType describeKeyPairs(
                                                    DescribeKeyPairsType req)
            throws RemoteException {

        // no use proceeding if these calls fail:
        final Caller caller = this.container.getCaller();
        final String ownerID;
        try {
            ownerID = this.container.getOwnerID(caller);
        } catch (CannotTranslateException e) {
            throw new RemoteException(e.getMessage(), e);
View Full Code Here

    public DeleteKeyPairResponseType deleteKeyPair(DeleteKeyPairType req)
            throws RemoteException {

        // no use proceeding if these calls fail:
        final Caller caller = this.container.getCaller();
        final String ownerID;
        try {
            ownerID = this.container.getOwnerID(caller);
        } catch (CannotTranslateException e) {
            throw new RemoteException(e.getMessage(), e);
View Full Code Here

        VM[] allvms = rm.getGlobalAll();
        assertEquals(0, allvms.length);
       
        MockShutdownTrash.resetFailCount();

        final Caller caller = this.populator().getCaller();
        final CreateResult result =
                rm.create(this.populator().getCreateRequest("suite:backoff:nobackoff"),
                          caller);

        final VM[] vms = result.getVMs();
View Full Code Here

        VM[] allvms = rm.getGlobalAll();
        assertEquals(0, allvms.length);

        MockShutdownTrash.resetFailCount();

        final Caller caller = this.populator().getCaller();
        final CreateResult result =
                rm.create(this.populator().getCreateRequest("suite:backoff:yesbackoff"),
                          caller);

        final VM[] vms = result.getVMs();
View Full Code Here

TOP

Related Classes of org.nimbustools.api.repr.Caller

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.