/* * 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 org.apache.ignite.internal.processors.rest.GridRestCommand; import org.apache.ignite.internal.util.typedef.internal.S; /** * Grid command request of log file. */ public class GridRestLogRequest extends GridRestRequest { /** Task name. */ private String path; /** From line, inclusive, indexing from 0. */ private int from = -1; /** To line, inclusive, indexing from 0, can exceed count of lines in log. */ private int to = -1; /** * Constructor. */ public GridRestLogRequest() { command(GridRestCommand.LOG); } /** * @return Path to log file. */ public String path() { return path; } /** * @param path Path to log file. */ public void path(String path) { this.path = path; } /** * @return From line, inclusive, indexing from 0. */ public int from() { return from; } /** * @param from From line, inclusive, indexing from 0. */ public void from(int from) { this.from = from; } /** * @return To line, inclusive, indexing from 0. */ public int to() { return to; } /** * @param to To line, inclusive, indexing from 0. */ public void to(int to) { this.to = to; } /** {@inheritDoc} */ @Override public String toString() { return S.toString(GridRestLogRequest.class, this, super.toString()); } }