001/* 002 * Licensed to the Apache Software Foundation (ASF) under one 003 * or more contributor license agreements. See the NOTICE file 004 * distributed with this work for additional information 005 * regarding copyright ownership. The ASF licenses this file 006 * to you under the Apache License, Version 2.0 (the 007 * "License"); you may not use this file except in compliance 008 * with the License. You may obtain a copy of the License at 009 * 010 * http://www.apache.org/licenses/LICENSE-2.0 011 * 012 * Unless required by applicable law or agreed to in writing, software 013 * distributed under the License is distributed on an "AS IS" BASIS, 014 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 015 * See the License for the specific language governing permissions and 016 * limitations under the License. 017 */ 018package org.apache.hadoop.hbase.client; 019 020import org.apache.commons.lang3.StringUtils; 021import org.apache.commons.lang3.builder.EqualsBuilder; 022import org.apache.commons.lang3.builder.HashCodeBuilder; 023import org.apache.commons.lang3.builder.ToStringBuilder; 024import org.apache.yetus.audience.InterfaceAudience; 025 026/** 027 * SlowLog params object that contains detailed info as params and region name : to be used for 028 * filter purpose 029 */ 030@InterfaceAudience.Private 031public class SlowLogParams { 032 033 private final String regionName; 034 private final String params; 035 036 public SlowLogParams(String regionName, String params) { 037 this.regionName = regionName; 038 this.params = params; 039 } 040 041 public SlowLogParams(String params) { 042 this.regionName = StringUtils.EMPTY; 043 this.params = params; 044 } 045 046 public String getRegionName() { 047 return regionName; 048 } 049 050 public String getParams() { 051 return params; 052 } 053 054 @Override 055 public String toString() { 056 return new ToStringBuilder(this).append("regionName", regionName).append("params", params) 057 .toString(); 058 } 059 060 @Override 061 public boolean equals(Object o) { 062 if (this == o) { 063 return true; 064 } 065 if (!(o instanceof SlowLogParams)) { 066 return false; 067 } 068 SlowLogParams that = (SlowLogParams) o; 069 return new EqualsBuilder().append(regionName, that.regionName).append(params, that.params) 070 .isEquals(); 071 } 072 073 @Override 074 public int hashCode() { 075 return new HashCodeBuilder(17, 37).append(regionName).append(params).toHashCode(); 076 } 077}