blob: 6122b817fa8719b2d02465e4276a4d246327f291 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 BSI Business Systems Integration AG.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Daniel Wiehl (BSI Business Systems Integration AG) - initial API and implementation
******************************************************************************/
package org.eclipse.scout.sdk.ws.jaxws;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.scout.commons.StringUtility;
public class JaxWsSdkStatus implements IStatus {
private IStatus status;
public JaxWsSdkStatus(IStatus status) {
this.status = status;
}
@Override
public IStatus[] getChildren() {
return status.getChildren();
}
@Override
public int getCode() {
return status.getCode();
}
@Override
public Throwable getException() {
return status.getException();
}
@Override
public String getMessage() {
return StringUtility.join(" > JaxWS Scout SDK", status.getMessage());
}
@Override
public String getPlugin() {
return status.getPlugin();
}
@Override
public int getSeverity() {
return status.getSeverity();
}
@Override
public boolean isMultiStatus() {
return status.isMultiStatus();
}
@Override
public boolean isOK() {
return status.isOK();
}
@Override
public boolean matches(int severityMask) {
return status.matches(severityMask);
}
}