blob: aafef2f499309971661e2143e35820ae7d5195ea [file] [log] [blame]
/*
* Copyright (c) 2011, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// dclarke/tware - initial
package org.eclipse.persistence.jpa.rs.resources.unversioned;
import java.io.InputStream;
import java.lang.reflect.InvocationTargetException;
import javax.naming.NamingException;
import jakarta.ws.rs.Consumes;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.POST;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.core.Context;
import jakarta.ws.rs.core.HttpHeaders;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.Response;
import jakarta.ws.rs.core.UriInfo;
import jakarta.xml.bind.JAXBException;
import org.eclipse.persistence.jpa.rs.resources.common.AbstractPersistenceResource;
/**
* PersistenceResource
* @deprecated Use {@link org.eclipse.persistence.jpa.rs.resources.PersistenceResource} instead.
*
* @author tware
*
*/
@Deprecated
@Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML })
@Consumes({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML })
@Path("/")
public class PersistenceResource extends AbstractPersistenceResource {
@GET
public Response getContexts(@Context HttpHeaders hh, @Context UriInfo uriInfo) throws JAXBException {
setRequestUniqueId();
return getContextsInternal(null, hh, uriInfo);
}
@POST
@Produces(MediaType.WILDCARD)
public Response callSessionBean(@Context HttpHeaders hh, @Context UriInfo ui, InputStream is) throws JAXBException, ClassNotFoundException, NamingException, NoSuchMethodException, InvocationTargetException, IllegalAccessException {
setRequestUniqueId();
return callSessionBeanInternal(null, hh, ui, is);
}
}