PetStore.java

/**
 * 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.cxf.systest.jaxrs;

import java.util.Collections;
import java.util.List;

import jakarta.ws.rs.Consumes;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.POST;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.PathParam;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.MultivaluedMap;
import jakarta.ws.rs.core.Response;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
import org.apache.cxf.jaxrs.ext.xml.XMLName;

@Path("/")
public class PetStore {

    public static final String CLOSED = "The Pet Store is closed";

    public PetStore() {
    }

    @GET
    @Produces("text/plain")
    public Response getBaseStatus() throws Exception {

        return Response.ok(CLOSED).build();
    }

    @GET
    @Path("/petstore/pets/{petId}/")
    @Produces("text/xml")
    public Response getStatus(@PathParam("petId")
                              String petId) throws Exception {

        return Response.ok(CLOSED).build();
    }

    @GET
    @Path("/petstore/jaxb/status/")
    @Produces("text/xml")
    public PetStoreStatus getJaxbStatus() {

        return new PetStoreStatus();
    }

    @GET
    @Path("/petstore/jaxb/statusType/")
    @Produces("text/xml")
    public PetStoreStatusType getJaxbStatusTyoe() {

        return new PetStoreStatusImpl1();
    }

    @GET
    @Path("/petstore/jaxb/status/elements")
    @Produces({"text/xml", "application/json" })
    @XMLName("{http://pets}statuses")
    public List<PetStoreStatusElement> getJaxbStatusElements() {
        return Collections.singletonList(new PetStoreStatusElement());
    }

    @GET
    @Path("/petstore/jaxb/status/element")
    @Produces("text/xml")
    public PetStoreStatusElement getJaxbStatusElement() {

        return new PetStoreStatusElement();
    }

    @POST
    @Path("/petstore/pets/")
    @Consumes(MediaType.APPLICATION_FORM_URLENCODED)
    @Produces("text/xml")
    public Response updateStatus(MultivaluedMap<String, String> params) throws Exception {
        return Response.ok(params.getFirst("status")).build();
    }

    @XmlType(name = "status", namespace = "http://pets")
    public static class PetStoreStatus {
        private String status = PetStore.CLOSED;

        public String getStatus() {
            return status;
        }

        public void setStatus(String status) {
            this.status = status;
        }

    }

    @XmlRootElement(name = "elstatus", namespace = "http://pets")
    public static class PetStoreStatusElement extends PetStoreStatus {
    }

    @XmlType(name = "statusType", namespace = "http://pets")
    @XmlSeeAlso({PetStoreStatusImpl1.class, PetStoreStatusImpl2.class })
    public static class PetStoreStatusType {
        private String status = PetStore.CLOSED;

        public String getStatus() {
            return status;
        }

        public void setStatus(String status) {
            this.status = status;
        }

    }

    @XmlRootElement(name = "statusImpl1", namespace = "http://pets")
    public static class PetStoreStatusImpl1 extends PetStoreStatusType {
    }
    @XmlRootElement(name = "statusImpl2", namespace = "http://pets")
    public static class PetStoreStatusImpl2 extends PetStoreStatusType {
    }
}