org.modeshape.web.shared.DurationParameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of modeshape-web-explorer
Show all versions of modeshape-web-explorer
ModeShape repository explorer that does not contain ModeShape libraries
/*
* ModeShape (http://www.modeshape.org)
*
* 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 org.modeshape.web.shared;
import java.io.Serializable;
/**
*
* @author kulikov
*/
public class DurationParameter implements Serializable {
public final static DurationParameter QUERY_EXECUTION_TIME = new DurationParameter(1, "Query duration");
public final static DurationParameter SESSION_LIFETIME = new DurationParameter(2, "Session duration");
public final static DurationParameter SEQUENCER_EXECUTION_TIME = new DurationParameter(3, "Sequencing duration");
private int id;
private String title;
public DurationParameter() {
}
public DurationParameter(int id, String title) {
this.id = id;
this.title = title;
}
public int id() {
return id;
}
public String title() {
return title;
}
}