001/*
002 * (C) Copyright 2017 Nuxeo SA (http://nuxeo.com/) and others.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 *
016 * Contributors:
017 *     bdelbosc
018 */
019package org.nuxeo.lib.stream.tools;
020
021import java.util.ArrayList;
022import java.util.List;
023
024import org.nuxeo.lib.stream.tools.command.AppendCommand;
025import org.nuxeo.lib.stream.tools.command.CatCommand;
026import org.nuxeo.lib.stream.tools.command.Command;
027import org.nuxeo.lib.stream.tools.command.CopyCommand;
028import org.nuxeo.lib.stream.tools.command.DatadogCommand;
029import org.nuxeo.lib.stream.tools.command.DumpCommand;
030import org.nuxeo.lib.stream.tools.command.HelpCommand;
031import org.nuxeo.lib.stream.tools.command.LagCommand;
032import org.nuxeo.lib.stream.tools.command.LatencyCommand;
033import org.nuxeo.lib.stream.tools.command.MonitorCommand;
034import org.nuxeo.lib.stream.tools.command.PositionCommand;
035import org.nuxeo.lib.stream.tools.command.RestoreCommand;
036import org.nuxeo.lib.stream.tools.command.TailCommand;
037import org.nuxeo.lib.stream.tools.command.TestCommand;
038import org.nuxeo.lib.stream.tools.command.TrackerCommand;
039import org.nuxeo.lib.stream.tools.command.WorkCatCommand;
040
041/**
042 * @since 9.3
043 */
044public class CommandRegistry {
045
046    public List<Command> commands() {
047        List<Command> ret = new ArrayList<>();
048        ret.add(new HelpCommand());
049        ret.add(new CatCommand());
050        ret.add(new TailCommand());
051        ret.add(new LagCommand());
052        ret.add(new LatencyCommand());
053        ret.add(new CopyCommand());
054        ret.add(new PositionCommand());
055        ret.add(new TrackerCommand());
056        ret.add(new RestoreCommand());
057        ret.add(new DumpCommand());
058        ret.add(new AppendCommand());
059        ret.add(new TestCommand());
060        ret.add(new MonitorCommand());
061        ret.add(new DatadogCommand());
062        ret.add(new WorkCatCommand());
063        return ret;
064    }
065}