/* * Copyright (c) 2013, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * WSO2 Inc. licenses this file to you 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.wso2.carbon.identity.oauth.dto; public class OAuthConsumerDTO { // oauth_signature private String oauthSignature = null; // oauth_nonce private String oauthNonce = null; // oauth_signature_method = HMAC-SHA1 private String oauthSignatureMethod = null; // oauth_consumer_key private String oauthConsumerKey = null; // oauth_timestamp private String oauthTimeStamp = null; private String baseString = null; private String httpMethod = null; public String getBaseString() { return baseString; } public void setBaseString(String baseString) { this.baseString = baseString; } public String getHttpMethod() { return httpMethod; } public void setHttpMethod(String httpMethod) { this.httpMethod = httpMethod; } public String getOauthSignature() { return oauthSignature; } public void setOauthSignature(String oauthSignature) { this.oauthSignature = oauthSignature; } public String getOauthNonce() { return oauthNonce; } public void setOauthNonce(String oauthNonce) { this.oauthNonce = oauthNonce; } public String getOauthSignatureMethod() { return oauthSignatureMethod; } public void setOauthSignatureMethod(String oauthSignatureMethod) { this.oauthSignatureMethod = oauthSignatureMethod; } public String getOauthConsumerKey() { return oauthConsumerKey; } public void setOauthConsumerKey(String oauthConsumerKey) { this.oauthConsumerKey = oauthConsumerKey; } public String getOauthTimeStamp() { return oauthTimeStamp; } public void setOauthTimeStamp(String oauthTimeStamp) { this.oauthTimeStamp = oauthTimeStamp; } }