org.jboss.arquillian.container.spi.client.deployment
Class Validate

java.lang.Object
  extended by org.jboss.arquillian.container.spi.client.deployment.Validate

public final class Validate
extends Object

Validate Validation utility

Version:
$Revision: $
Author:
Aslak Knutsen

Method Summary
static void configurationDirectoryExists(String string, String message)
          Checks that string is not null and not empty and it represents a path to a valid directory
static void notNull(Object obj, String message)
          Checks that object is not null, throws exception if it is.
static void notNullOrEmpty(String string, String message)
          Checks that the specified String is not null or empty, throws exception if it is.
static void stateNotNull(Object obj, String message)
          Checks that obj is not null, throws exception if it is.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

notNull

public static void notNull(Object obj,
                           String message)
                    throws IllegalArgumentException
Checks that object is not null, throws exception if it is.

Parameters:
obj - The object to check
message - The exception message
Throws:
IllegalArgumentException - Thrown if obj is null

notNullOrEmpty

public static void notNullOrEmpty(String string,
                                  String message)
                           throws IllegalArgumentException
Checks that the specified String is not null or empty, throws exception if it is.

Parameters:
string - The object to check
message - The exception message
Throws:
IllegalArgumentException - Thrown if obj is null

stateNotNull

public static void stateNotNull(Object obj,
                                String message)
                         throws IllegalStateException
Checks that obj is not null, throws exception if it is.

Parameters:
obj - The object to check
message - The exception message
Throws:
IllegalStateException - Thrown if obj is null

configurationDirectoryExists

public static void configurationDirectoryExists(String string,
                                                String message)
                                         throws ConfigurationException
Checks that string is not null and not empty and it represents a path to a valid directory

Parameters:
string - The path to check
message - The exception message
Throws:
ConfigurationException - Thrown if string is empty, null or it does not represent a path the a valid directory


Copyright © 2013 JBoss, a division of Red Hat, Inc.. All Rights Reserved.