blob: d98ae68d9666b231f11ab4c3f299e8cb3bfc7b6f [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.pulsar.functions.worker.rest;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
import org.apache.pulsar.functions.worker.rest.api.FunctionsMetricsResource;
import org.apache.pulsar.functions.worker.rest.api.v2.FunctionsApiV2Resource;
import org.apache.pulsar.functions.worker.rest.api.v2.WorkerApiV2Resource;
import org.apache.pulsar.functions.worker.rest.api.v2.WorkerStatsApiV2Resource;
import org.apache.pulsar.functions.worker.rest.api.v3.FunctionsApiV3Resource;
import org.apache.pulsar.functions.worker.rest.api.v3.SinkApiV3Resource;
import org.apache.pulsar.functions.worker.rest.api.v3.SinksApiV3Resource;
import org.apache.pulsar.functions.worker.rest.api.v3.SourceApiV3Resource;
import org.apache.pulsar.functions.worker.rest.api.v3.SourcesApiV3Resource;
import org.glassfish.jersey.media.multipart.MultiPartFeature;
public final class Resources {
private Resources() {
}
public static Set<Class<?>> getApiV2Resources() {
return new HashSet<>(
Arrays.asList(
FunctionsApiV2Resource.class,
WorkerApiV2Resource.class,
WorkerStatsApiV2Resource.class,
MultiPartFeature.class
));
}
public static Set<Class<?>> getApiV3Resources() {
return new HashSet<>(
Arrays.asList(
MultiPartFeature.class,
SourcesApiV3Resource.class,
SourceApiV3Resource.class,
SinksApiV3Resource.class,
SinkApiV3Resource.class,
FunctionsApiV3Resource.class
));
}
public static Set<Class<?>> getRootResources() {
return new HashSet<>(
Arrays.asList(
ConfigurationResource.class,
FunctionsMetricsResource.class,
WorkerReadinessResource.class
));
}
}