org.apache.maven.plugins.enforcer
Class RequireOS

java.lang.Object
  extended by org.apache.maven.plugins.enforcer.AbstractStandardEnforcerRule
      extended by org.apache.maven.plugins.enforcer.RequireOS

public class RequireOS
extends AbstractStandardEnforcerRule

This rule checks that the OS is allowed by combinations of family, name, version and cpu architecture. The behavior is exactly the same as the Maven Os profile activation so the same values are allowed here.

Version:
$Id: RequireOS.java 1345332 2012-06-01 20:14:13Z rfscholte $
Author:
Brian Fox

Field Summary
 String arch
          The OS architecture desired.
 boolean display
          Display detected OS information.
 String family
          The OS family type desired
Possible values: dos mac netware os/2 tandem unix windows win9x z/os os/400
 String message
          Specify an optional message to the user if the rule fails.
 String name
          The OS name desired.
 String version
          The OS version desired.
 
Constructor Summary
RequireOS()
          Instantiates a new RequireOS.
 
Method Summary
 boolean allParamsEmpty()
          Helper method to check that at least one of family, name, version or arch is set.
 void displayOSInfo(Log log, boolean info)
          Log the current OS information.
 void execute(EnforcerRuleHelper helper)
           
 String getArch()
          Gets the arch.
 String getCacheId()
           
 String getFamily()
          Gets the family.
 String getName()
          Gets the name.
 String getVersion()
          Gets the version.
 boolean isAllowed()
          Helper method to determine if the current OS is allowed based on the injected values for family, name, version and arch.
 boolean isCacheable()
           
 boolean isResultValid(EnforcerRule theCachedRule)
           
 boolean isValidFamily(String theFamily)
          Helper method to check if the given family is in the following list: dos mac netware os/2 tandem unix windows win9x z/os os/400 Note: '!' is allowed at the beginning of the string and still considered valid.
 void setArch(String theArch)
          Sets the arch.
 void setFamily(String theFamily)
          Sets the family.
 void setName(String theName)
          Sets the name.
 void setVersion(String theVersion)
          Sets the version.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

family

public String family
The OS family type desired
Possible values:


name

public String name
The OS name desired.


version

public String version
The OS version desired.


arch

public String arch
The OS architecture desired.


message

public String message
Specify an optional message to the user if the rule fails.


display

public boolean display
Display detected OS information.

Constructor Detail

RequireOS

public RequireOS()
Instantiates a new RequireOS.

Method Detail

execute

public void execute(EnforcerRuleHelper helper)
             throws EnforcerRuleException
Throws:
EnforcerRuleException

displayOSInfo

public void displayOSInfo(Log log,
                          boolean info)
Log the current OS information.

Parameters:
log - the log
info - the info

isAllowed

public boolean isAllowed()
Helper method to determine if the current OS is allowed based on the injected values for family, name, version and arch.

Returns:
true if the version is allowed.

allParamsEmpty

public boolean allParamsEmpty()
Helper method to check that at least one of family, name, version or arch is set.

Returns:
true if all parameters are empty.

isValidFamily

public boolean isValidFamily(String theFamily)
Helper method to check if the given family is in the following list: Note: '!' is allowed at the beginning of the string and still considered valid.

Parameters:
theFamily - the family to check.
Returns:
true if one of the valid families.

getArch

public String getArch()
Gets the arch.

Returns:
the arch

setArch

public void setArch(String theArch)
Sets the arch.

Parameters:
theArch - the arch to set

getFamily

public String getFamily()
Gets the family.

Returns:
the family

setFamily

public void setFamily(String theFamily)
Sets the family.

Parameters:
theFamily - the family to set

getName

public String getName()
Gets the name.

Returns:
the name

setName

public void setName(String theName)
Sets the name.

Parameters:
theName - the name to set

getVersion

public String getVersion()
Gets the version.

Returns:
the version

setVersion

public void setVersion(String theVersion)
Sets the version.

Parameters:
theVersion - the version to set

getCacheId

public String getCacheId()

isCacheable

public boolean isCacheable()

isResultValid

public boolean isResultValid(EnforcerRule theCachedRule)


Copyright © 2007-2012 The Apache Software Foundation. All Rights Reserved.