package org.jboss.tools.ws.jaxrs.sample.services;

public class Truck {
	
	// invalid wrong argument type, should be 'String'
	public Truck(int i) {
	
	}
	
	// invalid modifier: should be static
	public Truck valueOf(String value) {
		return null;
	}

	// invalid return type, should be Truck
	public Car fromString(String value) {
		return null;
	}
}
