/* * Copyright (c) 2005-2010, 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.dao; import org.wso2.carbon.identity.application.authentication.framework.model.AuthenticatedUser; import java.io.Serializable; public class OAuthAppDO implements Serializable { private static final long serialVersionUID = -6453843721358989519L; private int id; private String oauthConsumerKey; private String oauthConsumerSecret; private String applicationName; private String callbackUrl; private AuthenticatedUser user; private String oauthVersion; private String grantTypes; public AuthenticatedUser getUser() { return user; } public void setUser(AuthenticatedUser user) { this.user = user; } public String getOauthConsumerKey() { return oauthConsumerKey; } public void setOauthConsumerKey(String oauthConsumerKey) { this.oauthConsumerKey = oauthConsumerKey; } public String getOauthConsumerSecret() { return oauthConsumerSecret; } public void setOauthConsumerSecret(String oauthConsumerSecret) { this.oauthConsumerSecret = oauthConsumerSecret; } public String getApplicationName() { return applicationName; } public void setApplicationName(String applicationName) { this.applicationName = applicationName; } public String getCallbackUrl() { return callbackUrl; } public void setCallbackUrl(String callbackUrl) { this.callbackUrl = callbackUrl; } public String getOauthVersion() { return oauthVersion; } public void setOauthVersion(String oauthVersion) { this.oauthVersion = oauthVersion; } public String getGrantTypes() { return grantTypes; } public void setGrantTypes(String grantTypes) { this.grantTypes = grantTypes; } public int getId() { return id; } public void setId(int id) { this.id = id; } }