blob: a0bf563183dd5dbff6a340e13cdaef2fa91140ec [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Shane Clarke.
* 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:
* Shane Clarke - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.ws.jaxws.core.annotation.validation.tests;
import org.eclipse.jst.ws.internal.jaxws.core.JAXWSCoreMessages;
/**
*
* @author sclarke
*
*/
public class OnewayNoInOutParametersRuleTest extends AbstractOnewayValidationTest {
@Override
protected String getClassContents() {
StringBuilder classContents = new StringBuilder("package com.example;\n\n");
classContents.append("import javax.jws.WebParam;\n\n");
classContents.append("public class MyClass {\n\n\tpublic void myMethod(@WebParam(");
classContents.append("mode=WebParam.Mode.INOUT) int i) {\n\t}\n}");
return classContents.toString();
}
@Override
public String getErrorMessage() {
return JAXWSCoreMessages.ONEWAY_NO_INOUT_PARAMETERS;
}
}