package com.devicehive.vo; /* * #%L * DeviceHive Java Server Common business logic * %% * Copyright (C) 2016 DataArt * %% * 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. * #L% */ import com.devicehive.model.HiveEntity; import com.google.gson.annotations.SerializedName; import java.io.Serializable; /** * Created by tmatvienko on 1/13/15. */ public class OauthJwtRequestVO implements HiveEntity { private static final long serialVersionUID = -3876398635939615946L; private String providerName; private String code; @SerializedName("redirectUri") private String redirectUri; @SerializedName("accessToken") private String accessToken; private String login; private String password; public OauthJwtRequestVO() { } public String getProviderName() { return providerName; } public void setProviderName(String providerName) { this.providerName = providerName; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getAccessToken() { return accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; } public String getLogin() { return login; } public void setLogin(String login) { this.login = login; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String getRedirectUri() { return redirectUri; } public void setRedirectUri(String redirectUri) { this.redirectUri = redirectUri; } }