com.wesleyhome.dao.processor.model.ParamInfo Maven / Gradle / Ivy
/*
* @(#)ParamInfo.java
*
* (C) Copyright 2014 by Travelers
* All Rights Reserved.
*
* This software is the confidential and proprietary information
* of the Travelers Corporation. ("Confidential Information").
* Redistribution of the source code or binary form is not permitted
* without prior authorization from Travelers.
*/
package com.wesleyhome.dao.processor.model;
/**
* The ParamInfo
class is a
*
* @author
* @since
*/
public class ParamInfo {
public final String parameterClassName;
public final String parameterName;
public final boolean isCollection;
/**
* @param parameterClassName
* @param parameterName
*/
public ParamInfo(final String parameterClassName, final String parameterName, final boolean isCollection) {
super();
this.parameterClassName = parameterClassName;
this.parameterName = parameterName;
this.isCollection = isCollection;
}
}