blob: 6e0fa87ba9dce11428ea0ac86f21d1b1cc73514c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional information regarding
* copyright ownership. The ASF 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.apache.geode.management.internal.cli.domain;
import static java.lang.System.lineSeparator;
import java.io.Serializable;
import org.apache.geode.management.internal.i18n.CliStrings;
/**
* Domain object used for Data Commands Functions
*
*/
public class DataCommandRequest implements Serializable {
protected static final boolean DEFAULT_LOAD_ON_CACHE_MISS = false;
private boolean loadOnCacheMiss = DEFAULT_LOAD_ON_CACHE_MISS;
private boolean putIfAbsent;
private boolean recursive;
private String command;
private String key;
private String keyClass;
private String query;
private String regionName;
private String removeAllKeys;
private String value;
private String valueClass;
private Object principal;
public static final String NEW_LINE = lineSeparator();
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
if (isGet()) {
sb.append(" Type : Get").append(NEW_LINE);
sb.append(" Key : ").append(key).append(NEW_LINE);
sb.append(" RegionName : ").append(regionName).append(NEW_LINE);
sb.append(" LoadOnCacheMiss : ").append(loadOnCacheMiss).append(NEW_LINE);
} else if (isLocateEntry()) {
sb.append(" Type : Locate Entry").append(NEW_LINE);
sb.append(" Key : ").append(key).append(NEW_LINE);
sb.append(" RegionName : ").append(regionName).append(NEW_LINE);
sb.append(" Recursive : ").append(recursive).append(NEW_LINE);
} else if (isPut()) {
sb.append(" Type : Put");
sb.append(" Key : ").append(key).append(NEW_LINE);
sb.append(" putIfAbsent : ").append(putIfAbsent).append(NEW_LINE);
sb.append(" Value : ").append(value).append(NEW_LINE);
sb.append(" RegionName : ").append(regionName).append(NEW_LINE);
} else if (isRemove()) {
sb.append(" Type : Remove");
sb.append(" Key : ").append(key).append(NEW_LINE);
sb.append(" removeAllKeys : ").append(removeAllKeys).append(NEW_LINE);
sb.append(" RegionName : ").append(regionName).append(NEW_LINE);
} else if (isSelect()) {
sb.append(" Type : SELECT");
sb.append(" Query : ").append(query).append(NEW_LINE);
}
return sb.toString();
}
public boolean isGet() {
return CliStrings.GET.equals(command);
}
public boolean isPut() {
return CliStrings.PUT.equals(command);
}
public boolean isRemove() {
return CliStrings.REMOVE.equals(command);
}
public boolean isLocateEntry() {
return CliStrings.LOCATE_ENTRY.equals(command);
}
public boolean isSelect() {
return CliStrings.QUERY.equals(command);
}
public String getQuery() {
return query;
}
public void setQuery(String query) {
this.query = query;
}
public String getCommand() {
return command;
}
public String getKey() {
return key;
}
public String getValue() {
return value;
}
public boolean isPutIfAbsent() {
return putIfAbsent;
}
public String getKeyClass() {
return keyClass;
}
public String getValueClass() {
return valueClass;
}
public String getRegionName() {
return regionName;
}
public String getRemoveAllKeys() {
return removeAllKeys;
}
public boolean isLoadOnCacheMiss() {
return loadOnCacheMiss;
}
public Object getPrincipal() {
return principal;
}
public void setKey(String key) {
this.key = key;
}
public void setValue(String value) {
this.value = value;
}
public void setPutIfAbsent(boolean putIfAbsent) {
this.putIfAbsent = putIfAbsent;
}
public void setKeyClass(String keyClass) {
this.keyClass = keyClass;
}
public void setValueClass(String valueClass) {
this.valueClass = valueClass;
}
public void setRegionName(String regionName) {
this.regionName = regionName;
}
public void setRemoveAllKeys(String removeAllKeys) {
this.removeAllKeys = removeAllKeys;
}
public void setCommand(String command) {
this.command = command;
}
public boolean isRecursive() {
return recursive;
}
public void setRecursive(boolean recursive) {
this.recursive = recursive;
}
public void setLoadOnCacheMiss(final boolean loadOnCacheMiss) {
this.loadOnCacheMiss = loadOnCacheMiss;
}
public void setPrincipal(Object principal) {
this.principal = principal;
}
}