/* * 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.ignite.internal.processors.rest.request; import java.util.Map; import org.apache.ignite.internal.util.typedef.internal.S; /** * */ public class GridRestCacheRequest extends GridRestRequest { /** Cache name. */ private String cacheName; /** Key. */ private Object key; /** Value (expected value for CAS). */ private Object val; /** New value for CAS. */ private Object val2; /** Keys and values for put all, get all, remove all operations. */ private Map<Object, Object> vals; /** Bit map of cache flags to be enabled on cache projection. */ private int cacheFlags; /** Expiration time. */ private Long ttl; /** * @return Cache name, or {@code null} if not set. */ public String cacheName() { return cacheName; } /** * @param cacheName Cache name. */ public void cacheName(String cacheName) { this.cacheName = cacheName; } /** * @return Key. */ public Object key() { return key; } /** * @param key Key. */ public void key(Object key) { this.key = key; } /** * @return Value 1. */ public Object value() { return val; } /** * @param val Value 1. */ public void value(Object val) { this.val = val; } /** * @return Value 2. */ public Object value2() { return val2; } /** * @param val2 Value 2. */ public void value2(Object val2) { this.val2 = val2; } /** * @return Keys and values for put all, get all, remove all operations. */ public Map<Object, Object> values() { return vals; } /** * @param vals Keys and values for put all, get all, remove all operations. */ public void values(Map<Object, Object> vals) { this.vals = vals; } /** * @param cacheFlags Bit representation of cache flags. */ public void cacheFlags(int cacheFlags) { this.cacheFlags = cacheFlags; } /** * @return Bit representation of cache flags. */ public int cacheFlags() { return cacheFlags; } /** * @return Expiration time. */ public Long ttl() { return ttl; } /** * @param ttl Expiration time. */ public void ttl(Long ttl) { this.ttl = ttl; } /** {@inheritDoc} */ @Override public String toString() { return S.toString(GridRestCacheRequest.class, this, super.toString()); } }