Skip to content

Commit

Permalink
chore: remove author annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
Thorsten Schlathoelter committed May 21, 2024
1 parent ef64a21 commit 50a7341
Show file tree
Hide file tree
Showing 27 changed files with 2 additions and 57 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
/**
* Interface for providing TestCaseRunner.
*
* @author Thorsten Schlathoelter
* @since 4.0
*/
public interface TestCaseRunnerProvider {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@

/**
* Class extracting values of segments of VariableExpressions.
*
* @author Thorsten Schlathoelter
*/
public interface SegmentVariableExtractor {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@
* the extractors managed by this registry in order to access variable content from the TestContext expressed by variable expressions.
* <p>
* Registry provides all known {@link SegmentVariableExtractor}s.
*
* @author Thorsten Schlathoelter
*/
public class SegmentVariableExtractorRegistry {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@
* <li>the third element of the <b>persons</b> property of the variable retrieved in the previous step</li>
* <li>the first element of the <b>firstnames</b> property of the property retrieved in the previous step</li>
* </ol>
*
* @author Thorsten Schlathoelter
*/
public class VariableExpressionIterator implements Iterator<VariableSegment> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@

package org.citrusframework.spi.mocks;

/**
* @author Thorsten Schlathoelter
*/
public class FooWithParams {

public FooWithParams(int intParam, short shortParam, double doubleParam, float floatParam,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@

package org.citrusframework.spi.mocks;

/**
* @author Thorsten Schlathoelter
*/
public class SingletonFoo {

public static final SingletonFoo INSTANCE = new SingletonFoo();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
* The specified file must define the type of {@link TestCaseRunnerProvider} responsible for
* delivering the custom test case runner.
*
* @author Thorsten Schlathoelter
* @since 4.0
* @see TestCaseRunnerProvider
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
* loading SpringXmlTest.
*
*
* @author Thorsten Schlathoelter
* @since 4.0
* @see SpringXmlTestLoader
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
* This configuration is necessary only when using Spring without Spring Boot. Spring Boot includes a standard conversion service
* that automatically detects and uses relevant converters by default.
*
* @author Thorsten Schlathoelter
* @since 4.0
*/
@Configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* Namespace handler registers bean definition parser
* for Citrus testcase schema elements.
*
* @author Christoph Deppisch, Thorsten Schlathoelter
* @author Christoph Deppisch
* @since 2007
*/
public class CitrusTestCaseNamespaceHandler extends NamespaceHandlerSupport {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
*
* @param <T>
*
* @author Thorsten Schlathoelter
*/
public abstract class BaseTestCaseMetaInfoParser<T extends TestCaseMetaInfo> implements BeanDefinitionParser {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
*
* @param <T>
*
* @author Christop Deppisch, Thorsten Schlathoelter
* @author Christop Deppisch
*/
@SuppressWarnings("PMD.AvoidDuplicateLiterals")
public class BaseTestCaseParser<T extends TestCase> implements BeanDefinitionParser {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
* Delegates to a {@link Resources} to do the {@link Resource} creation. The implementation follows the
* implementation of {@link org.springframework.core.io.ResourceEditor}.
*
* @author Thorsten Schlathoelter
* @since 4.0
*/
public class CitrusResourceEditor extends PropertyEditorSupport {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@

import java.io.*;

/**
* @author Thorsten Schlatoelter
*/
public class CustomTestCaseParserTest extends AbstractActionParserTest<EchoAction> {

@BeforeClass
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@
import org.testng.annotations.Test;
import org.w3c.dom.Element;

/**
* @author Thorsten Schlathoelter
*/
@SpringXmlTestLoaderConfiguration(
parserConfigurations = {
@BeanDefinitionParserConfiguration(name = "testcase", parser = SpringXmlTestLoaderIT.CustomTestCaseParser.class),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import org.testng.annotations.Test;

/**
* @author Thorsten Schlathoelter
* @since 3.1.3
*/
public class SendSoapMessageWithSchemaValidationIT extends TestNGCitrusSpringSupport {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@
import org.springframework.util.xml.DomUtils;
import org.w3c.dom.Element;

/**
* @author Thorsten Schlathoelter
*/
@SpringXmlTestLoaderConfiguration(
parserConfigurations = {
@BeanDefinitionParserConfiguration(name = "testcase", parser = SpringXmlTestLoaderIT.CustomTestCaseParser.class),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,6 @@
import org.springframework.util.xml.DomUtils;
import org.w3c.dom.Element;

/**
* @author Thorsten Schlathoelter
*/
@CitrusSpringSupport
@ContextConfiguration(classes = {CitrusSpringConfig.class, CustomConfiguration.class})
@SpringXmlTestLoaderConfiguration(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@

import org.testng.SkipException;

/**
* @author Thorsten Schlathoelter
*/
public class TestNGUtils {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* @author Thorsten Schlathoelter
*/
public class JavaCitrusCodegen extends AbstractJavaCodegen {

private static final Logger logger = LoggerFactory.getLogger(JavaCitrusCodegen.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@

/**
* Wrapper class that uses reflection to expose several properties of the {@link CodeGenMojo} for explicit assignment.
*
* @author Thorsten Schlathoelter
*/
public class CodeGenMojoWrapper extends CodeGenMojo {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@
* {@link TestApiGeneratorMojo#CITRUS_TEST_SCHEMA}.
* </p>
*
* @author Thorsten Schlathoelter
*
*/
public class SpringMetaFileGenerator {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@
* of creating robust integration tests.
* </p>
*
* @author Thorsten Schlathoelter
*
*/
@Mojo(
name = "create-test-api",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,6 @@
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.MethodSource;

/**
* @author Thorsten Schlathoelter
*/
class TestApiGeneratorMojoIntegrationTest extends AbstractMojoTestCase {

public static final String OTHER_META_FILE_CONTENT = "somenamespace=somevalue";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,6 @@
import org.openapitools.codegen.plugin.CodeGenMojo;


/**
* @author Thorsten Schlathoelter
*/
@ExtendWith(MockitoExtension.class)
@SuppressWarnings({"JUnitMalformedDeclaration", "JUnitMixedFramework"})
class TestApiGeneratorMojoUnitTest extends AbstractMojoTestCase {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@
import org.citrusframework.variable.SegmentVariableExtractorRegistry;
import org.citrusframework.variable.VariableExpressionSegmentMatcher;

/**
* @author Thorsten Schlathoelter
*/
public class JsonPathSegmentVariableExtractor extends SegmentVariableExtractorRegistry.AbstractSegmentVariableExtractor {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@
import org.slf4j.LoggerFactory;
import org.w3c.dom.Document;

/**
* @author Thorsten Schlathoelter
*/
public class XpathSegmentVariableExtractor extends SegmentVariableExtractorRegistry.AbstractSegmentVariableExtractor {

/**
Expand Down

0 comments on commit 50a7341

Please sign in to comment.