blob: 9f54887461f88c83cfb2354f244f343dff7950aa [file] [log] [blame]
package org.apache.maven.plugins.enforcer;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import org.apache.maven.enforcer.rule.api.EnforcerRule;
import org.apache.maven.enforcer.rule.api.EnforcerRuleException;
import org.apache.maven.enforcer.rule.api.EnforcerRuleHelper;
/**
* @author <a href="mailto:brianf@apache.org">Brian Fox</a>
*/
public class MockEnforcerRule
implements EnforcerRule
{
public boolean failRule = false;
public String cacheId = "";
public boolean isCacheable = false;
public boolean isResultValid = false;
public boolean executed = false;
public MockEnforcerRule( boolean fail )
{
this.failRule = fail;
}
public MockEnforcerRule( boolean fail, String cacheId, boolean isCacheable, boolean isResultValid )
{
this.failRule = fail;
this.isCacheable = isCacheable;
this.isResultValid = isResultValid;
this.cacheId = cacheId;
}
public void execute( EnforcerRuleHelper helper )
throws EnforcerRuleException
{
executed = true;
if ( isFailRule() )
{
throw new EnforcerRuleException( " this condition is not allowed." );
}
}
/**
* @return the failRule
*/
public boolean isFailRule()
{
return this.failRule;
}
/**
* @param theFailRule the failRule to set
*/
public void setFailRule( boolean theFailRule )
{
this.failRule = theFailRule;
}
/**
* @return the isResultValid
*/
public boolean isResultValid()
{
return this.isResultValid;
}
/**
* @param theIsResultValid the isResultValid to set
*/
public void setResultValid( boolean theIsResultValid )
{
this.isResultValid = theIsResultValid;
}
/**
* @param theCacheId the cacheId to set
*/
public void setCacheId( String theCacheId )
{
this.cacheId = theCacheId;
}
/**
* @param theIsCacheable the isCacheable to set
*/
public void setCacheable( boolean theIsCacheable )
{
this.isCacheable = theIsCacheable;
}
/*
* (non-Javadoc)
* @see org.apache.maven.enforcer.rule.api.EnforcerRule#getCacheId()
*/
public String getCacheId()
{
return cacheId;
}
/*
* (non-Javadoc)
* @see org.apache.maven.enforcer.rule.api.EnforcerRule#isCacheable()
*/
public boolean isCacheable()
{
return isCacheable;
}
/*
* (non-Javadoc)
* @see
* org.apache.maven.enforcer.rule.api.EnforcerRule#isResultValid(org.apache.maven.enforcer.rule.api.EnforcerRule)
*/
public boolean isResultValid( EnforcerRule theCachedRule )
{
return isResultValid;
}
}