001 /* 002 * Copyright 2004-2005 the original author or authors. 003 */ 004 package org.springframework.rules.constraint; 005 006 /** 007 * Always returns true; a wildcard match 008 * 009 * @author Keith Donald 010 */ 011 public class WildcardConstraint extends AbstractConstraint { 012 public boolean test(Object argument) { 013 return true; 014 } 015 }