Java tutorial
/* * Copyright 2019 ThoughtWorks, Inc. * * 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 cd.go.authentication.ldap.model; import cd.go.authentication.ldap.utils.Util; import com.google.gson.JsonObject; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; public class Credentials { @Expose @SerializedName("username") private String username; @Expose @SerializedName("password") private String password; public Credentials() { } public Credentials(String username, String password) { this.username = username; this.password = password; } public static Credentials fromJSON(String requestBody) { JsonObject jsonObject = Util.GSON.fromJson(requestBody, JsonObject.class); return Util.GSON.fromJson(jsonObject.get("credentials").toString(), Credentials.class); } public String getUsername() { return username; } public String getPassword() { return password; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; Credentials that = (Credentials) o; if (username != null ? !username.equals(that.username) : that.username != null) return false; return password != null ? password.equals(that.password) : that.password == null; } @Override public int hashCode() { int result = username != null ? username.hashCode() : 0; result = 31 * result + (password != null ? password.hashCode() : 0); return result; } }