All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.patternity.core.metamodel.CommonPattern Maven / Gradle / Ivy

Go to download

Extensions of the RestFixture. An extension is a RestFixture with some specific/bespoke behaviour not generic enough to make it to the RestFixture itself.

There is a newer version: 3.1
Show newest version
package com.patternity.core.metamodel;


/**
 * @author cyrille martraire
 * 
 */
public class CommonPattern implements Pattern {

	private final String name;

	public CommonPattern(String name) {
		this.name = name;
	}

	public String getName() {
		return name;
	}

	public String toString() {
		return "CommonPattern: " + getName();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy