EndpointBean.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.grizzly;

import java.io.IOException;

import jakarta.activation.DataHandler;
import jakarta.annotation.PostConstruct;
import jakarta.annotation.PreDestroy;
import jakarta.jws.WebService;
import jakarta.xml.ws.WebServiceException;
import jakarta.xml.ws.soap.MTOM;

@WebService(serviceName = "EndpointService",
            endpointInterface = "org.apache.cxf.systest.grizzly.EndpointInterface",
            targetNamespace = "http://org.apache.cxf/jaxws/endpoint/")
@MTOM
public class EndpointBean implements EndpointInterface {

    private int count;
    private boolean initialized;

    public String echo(String input) {
        count++;
        return input;
    }

    @PostConstruct
    public void init() {
        this.initialized = true;
    }

    @PreDestroy
    public void destroy() {
        // nothing to do
    }

    public int getCount() {
        this.ensureInit();
        return count;
    }

    public void getException() {
        this.ensureInit();
        throw new WebServiceException("Ooops");
    }

    public DHResponse echoDataHandler(DHRequest request) {
        this.ensureInit();
        DataHandler dataHandler = request.getDataHandler();

        try {
            if (!"text/plain".equals(dataHandler.getContentType())) {
                throw new WebServiceException("Wrong content type");
            }
            if (!"some string".equals(dataHandler.getContent())) {
                throw new WebServiceException("Wrong data");
            }
        } catch (IOException e) {
            throw new WebServiceException(e);
        }

        DataHandler responseData = new DataHandler("Server data", "text/plain");
        return new DHResponse(responseData);
    }

    private void ensureInit() {
        if (!this.initialized) {
            throw new IllegalStateException();
        }
    }

}