Package org.agorava.core.mock

Source Code of org.agorava.core.mock.ObjectMother

/*
* Copyright 2013 Agorava
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.agorava.core.mock;


import org.agorava.AgoravaConstants;
import org.agorava.api.oauth.OAuthRequest;
import org.agorava.api.rest.Verb;
import org.agorava.rest.OAuthRequestImpl;

public class ObjectMother {

    public static OAuthRequest createSampleOAuthRequest() {
        OAuthRequest request = new OAuthRequestImpl(Verb.GET, "http://example.com");
        request.addOAuthParameter(AgoravaConstants.TIMESTAMP, "123456");
        request.addOAuthParameter(AgoravaConstants.CONSUMER_KEY, "AS#$^*@&");
        request.addOAuthParameter(AgoravaConstants.CALLBACK, "http://example/callback");
        request.addOAuthParameter(AgoravaConstants.SIGNATURE, "OAuth-Signature");
        return request;
    }
}
TOP

Related Classes of org.agorava.core.mock.ObjectMother

TOP
Copyright © 2018 www.massapi.com. 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.