com.sun.xml.ws.model.CheckedExceptionImpl Maven / Gradle / Ivy
/*
* Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package com.sun.xml.ws.model;
import java.lang.reflect.Method;
import com.sun.xml.bind.api.Bridge;
import com.sun.xml.ws.api.model.CheckedException;
import com.sun.xml.ws.api.model.ExceptionType;
import com.sun.xml.ws.api.model.JavaMethod;
import com.sun.xml.ws.addressing.WsaActionUtil;
import com.sun.xml.ws.spi.db.XMLBridge;
import com.sun.xml.ws.spi.db.TypeInfo;
/**
* CheckedException class. Holds the exception class - class that has public
* constructor
*
* public WrapperException()String message, FaultBean){}
*
* and method
*
* public FaultBean getFaultInfo();
*
* @author Vivek Pandey
*/
public final class CheckedExceptionImpl implements CheckedException {
private final Class exceptionClass;
private final TypeInfo detail;
private final ExceptionType exceptionType;
private final JavaMethodImpl javaMethod;
private String messageName;
private String faultAction = "";
private Method faultInfoGetter;
/**
* @param jm {@link JavaMethodImpl} that throws this exception
* @param exceptionClass
* User defined or WSDL exception class that extends
* java.lang.Exception.
* @param detail
* detail or exception bean's TypeReference
* @param exceptionType
* either ExceptionType.UserDefined or
*/
public CheckedExceptionImpl(JavaMethodImpl jm, Class exceptionClass, TypeInfo detail, ExceptionType exceptionType) {
this.detail = detail;
this.exceptionType = exceptionType;
this.exceptionClass = exceptionClass;
this.javaMethod = jm;
}
public AbstractSEIModelImpl getOwner() {
return javaMethod.owner;
}
public JavaMethod getParent() {
return javaMethod;
}
/**
* @return the Class
for this object
*
*/
public Class getExceptionClass() {
return exceptionClass;
}
public Class getDetailBean() {
return (Class) detail.type;
}
/** @deprecated */
public Bridge getBridge() {
//TODO return getOwner().getBridge(detail);
return null;
}
public XMLBridge getBond() {
return getOwner().getXMLBridge(detail);
}
public TypeInfo getDetailType() {
return detail;
}
public ExceptionType getExceptionType() {
return exceptionType;
}
public String getMessageName() {
return messageName;
}
public void setMessageName(String messageName) {
this.messageName = messageName;
}
public String getFaultAction() {
return faultAction;
}
public void setFaultAction(String faultAction) {
this.faultAction = faultAction;
}
public String getDefaultFaultAction() {
return WsaActionUtil.getDefaultFaultAction(javaMethod,this);
}
public Method getFaultInfoGetter() {
return faultInfoGetter;
}
public void setFaultInfoGetter(Method faultInfoGetter) {
this.faultInfoGetter = faultInfoGetter;
}
}