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

ivo.findInterface.vm Maven / Gradle / Ivy

There is a newer version: 1.7
Show newest version
package ${model.getPackageName()}.requests;

#foreach ( $imp in $model.getImports() )
import $imp;
#end

/**
 * $model.getComment()
 *
 * @author $model.getAuthor()
 **/
@SuppressWarnings("all")
#if ($model.isDeprecated())
@Deprecated
@ToBeRemoved(date="$model.getRemoveDate()")
#end
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonTypeInfo(use = JsonTypeInfo.Id.CLASS, include = JsonTypeInfo.As.PROPERTY, property = "@class")
public interface $clazzName $model.getInterfaceImplements() {

#foreach ( $field in $model.getFilterableFields() )
	/**
	 * property constant for $field.name
	 * property comment: $field.comment
	 **/
	public static final String PROP_$field.name.toUpperCase() = "$field.name";

#end
#foreach ( $field in $model.getFilterableFields() )
	/**
	 * $field.comment
	 * This field is optional, thus may be null.
	 *
	 * @return the value for $field.name
	 *
	 **/
	@Nullable
#if ($field.filterable == 'single')
	public $field.getTypeAsString( true ) get$tool.upperCaseFirst( $field.name )();
#else
	public Set<$field.getTypeAsString( true )> get$tool.upperCaseFirst( $field.name )();
#end

#end
	/**
	 * @return a clone
	 **/
	public $clazzName clone();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy