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

org.frameworkset.util.annotations.PathVariableInfo Maven / Gradle / Ivy

Go to download

bboss is a j2ee framework include aop/ioc,mvc,persistent,taglib,rpc,event ,bean-xml serializable and so on.http://www.bbossgroups.com

There is a newer version: 6.2.7
Show newest version
package org.frameworkset.util.annotations;

/**
 * restful 路径变量对象
 * 
 * @author yinbp
 *
 */
public class PathVariableInfo implements java.io.Serializable{
	/**
	 *   
	 */
	private String variable;
	private boolean last ;
	private String constantstr;
	private int postion;

	public PathVariableInfo() {
		// TODO Auto-generated constructor stub
	}

	public String getVariable() {
		return variable;
	}

	public void setVariable(String variable) {
		this.variable = variable;
	}

	public String getConstantstr() {
		return constantstr;
	}

	public void setConstantstr(String constantstr) {
		this.constantstr = constantstr;
	}

	public boolean isLast() {
		return last;
	}

	public void setLast(boolean last) {
		this.last = last;
	}

	public int getPostion() {
		return postion;
	}

	public void setPostion(int postion) {
		this.postion = postion;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy