Package com.cribbstechnologies.clients.mandrill.model.response.users

Examples of com.cribbstechnologies.clients.mandrill.model.response.users.UsersSendersResponse


     * @param sendersRequest
     *            a populated @see com.cribbstechnologies.clients.mandrill.model.BaseMandrillRequest
     * @throws RequestFailedException
     */
    public UsersSendersResponse getSenders(BaseMandrillRequest sendersRequest) throws RequestFailedException {
        UsersSendersResponse response = new UsersSendersResponse();
        response.setList(((BaseMandrillAnonymousListResponse<MandrillSender>) request.postRequest(sendersRequest, ServiceMethods.Users.SENDERS, UsersSendersResponse.class,
                usersListReference)).getList());
        return response;
    }
View Full Code Here

TOP

Related Classes of com.cribbstechnologies.clients.mandrill.model.response.users.UsersSendersResponse

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.