blob: 9e5bf0eeeeb0af66cf93838dc7d5f28291297b6e [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2004, 2007 Boeing
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Boeing - initial API and implementation
**********************************************************************/
package org.eclipse.osee.ote.rest.internal;
import java.util.HashSet;
import java.util.Set;
import javax.ws.rs.ApplicationPath;
import javax.ws.rs.core.Application;
/**
* Get application.wadl at this context to get rest documentation
*
* @author Roberto E. Escobar
*/
@ApplicationPath("ote")
public class OteRestApplication extends Application {
private static OteConfigurationStore store;
public void setOteConfigurationStore(OteConfigurationStore store) {
OteRestApplication.store = store;
}
public static OteConfigurationStore get() {
return store;
}
@Override
public Set<Class<?>> getClasses() {
Set<Class<?>> classes = new HashSet<>();
classes.add(OteRootResource.class);
classes.add(OteConfigurationResource.class);
classes.add(OteJobsResource.class);
classes.add(OteFilesResource.class);
classes.add(OteRunTestResource.class);
classes.add(OteBatchesResource.class);
return classes;
}
}