A C D E F G H L P R S T U 

A

AbstractUnitOfWork<T> - Class in at.ipsquare.commons.core.interfaces
Abstract base class for UnitOfWork implementations.
AbstractUnitOfWork() - Constructor for class at.ipsquare.commons.core.interfaces.AbstractUnitOfWork
 
at.ipsquare.commons.core.interfaces - package at.ipsquare.commons.core.interfaces
This package contains interfaces and abstract classes as well as directly related types, that are useful in most projects.
at.ipsquare.commons.core.util - package at.ipsquare.commons.core.util
Various utility classes.

C

Classes - Class in at.ipsquare.commons.core.util
Utility methods around Class.
ClassLoaders - Class in at.ipsquare.commons.core.util
A global registry for class loaders that is used throughout all IP SQUARE commons components.
clear() - Static method in class at.ipsquare.commons.core.util.ClassLoaders
Unregisters all ClassLoaders.

D

DEFAULT_PERFORMANCE_LOG_FORMATTER_KEY - Static variable in class at.ipsquare.commons.core.util.PerformanceLogger
The property key that specifies the default PerformanceLogFormatter implementation to use.
DEFAULT_SETTINGS_PATH - Static variable in class at.ipsquare.commons.core.util.PerformanceLogger
Path to an XML properties file that can be used to override the default settings of this class.
DEFAULT_THRESHOLD_KEY - Static variable in class at.ipsquare.commons.core.util.PerformanceLogger
The property key that specifies the default threshold to use.
DefaultPerformanceLogFormatter - Class in at.ipsquare.commons.core.util
Default PerformanceLogFormatter implementation.
DefaultPerformanceLogFormatter() - Constructor for class at.ipsquare.commons.core.util.DefaultPerformanceLogFormatter
 

E

execute() - Method in interface at.ipsquare.commons.core.interfaces.UnitOfWork
Performs some operations and returns the results.
executeUnitOfWork(UnitOfWork<T>) - Method in interface at.ipsquare.commons.core.interfaces.UnitOfWorkExecutor
Executes the given UnitOfWork in an implementation defined context and returns its result.
ExecutionError - Exception in at.ipsquare.commons.core.interfaces
Thrown by UnitOfWorkExecutors if executing UnitOfWork.execute() fails.
ExecutionError(String) - Constructor for exception at.ipsquare.commons.core.interfaces.ExecutionError
 
ExecutionError(String, Throwable) - Constructor for exception at.ipsquare.commons.core.interfaces.ExecutionError
 
ExecutionError(Throwable) - Constructor for exception at.ipsquare.commons.core.interfaces.ExecutionError
 

F

firstElementBelowClass() - Static method in class at.ipsquare.commons.core.util.StackTrace
Returns the first element in the stack that does not originate from the class of the caller.
format(StackTraceElement, StackTraceElement, long, String) - Method in class at.ipsquare.commons.core.util.DefaultPerformanceLogFormatter
 
format(StackTraceElement, StackTraceElement, long, String) - Method in interface at.ipsquare.commons.core.util.PerformanceLogFormatter
Formats a log message according to the given input.
forName(String, boolean) - Static method in class at.ipsquare.commons.core.util.Classes
forName(String) - Static method in class at.ipsquare.commons.core.util.Classes
A version of Class.forName(String) that uses the ClassLoaders obtained by ClassLoaders.get().
forName(String, Class<T>) - Static method in class at.ipsquare.commons.core.util.Classes
An enhanced version of Classes.forName(String) that makes sure that the returned class extends the given type.
forName(String, boolean, Class<T>) - Static method in class at.ipsquare.commons.core.util.Classes
An enhanced version of Classes.forName(String, boolean) that makes sure that the returned class extends the given type.

G

generate(T) - Method in interface at.ipsquare.commons.core.interfaces.StringGenerator
Generates a string from the given object.
get() - Static method in class at.ipsquare.commons.core.util.ClassLoaders
Returns a set of all explicitly registered ClassLoaders as well as the ClassLoader that loaded this class and the current context class loader if set.
get() - Static method in class at.ipsquare.commons.core.util.StackTrace
Returns the current stack trace, starting with the invocation of this method (unlike Thread.getStackTrace()).
getFile(String) - Static method in class at.ipsquare.commons.core.util.LocalResources
Returns a file object for the given path.
getId() - Method in interface at.ipsquare.commons.core.interfaces.HasId
Returns the ID.
getName() - Method in class at.ipsquare.commons.core.interfaces.AbstractUnitOfWork
 
getName() - Method in interface at.ipsquare.commons.core.interfaces.UnitOfWork
A name (most likely for logging purposes).
getStream(String) - Static method in class at.ipsquare.commons.core.util.LocalResources
Returns an InputStream for the given path.
getUrl(String) - Static method in class at.ipsquare.commons.core.util.LocalResources

H

HasId<T> - Interface in at.ipsquare.commons.core.interfaces
Interface for types (usually entities) that have some kind of ID.

L

LocalResources - Class in at.ipsquare.commons.core.util
For loading local resources from the classpath.
logElapsed() - Method in class at.ipsquare.commons.core.util.PerformanceLogger
logElapsed(String) - Method in class at.ipsquare.commons.core.util.PerformanceLogger
Logs the elapsed time if it is above the threshold.
logElapsedAndRestart() - Method in class at.ipsquare.commons.core.util.PerformanceLogger
logElapsedAndRestart(String) - Method in class at.ipsquare.commons.core.util.PerformanceLogger
Logs the elapsed time if it is above the threshold and restarts the internal timer.

P

PerformanceLogFormatter - Interface in at.ipsquare.commons.core.util
An interface for formatting log messages.
PerformanceLogger - Class in at.ipsquare.commons.core.util
A simple performance logger.
PerformanceLogger() - Constructor for class at.ipsquare.commons.core.util.PerformanceLogger
Constructs a new PerformanceLogger with default settings.
PerformanceLogger(long) - Constructor for class at.ipsquare.commons.core.util.PerformanceLogger
Constructs a new PerformanceLogger a default PerformanceLogFormatter implementation.
PerformanceLogger(PerformanceLogFormatter) - Constructor for class at.ipsquare.commons.core.util.PerformanceLogger
Constructs a new PerformanceLogger with a default threshold.
PerformanceLogger(long, PerformanceLogFormatter) - Constructor for class at.ipsquare.commons.core.util.PerformanceLogger
Constructs a new PerformanceLogger.

R

register(ClassLoader) - Static method in class at.ipsquare.commons.core.util.ClassLoaders
Registers a ClassLoader.
registered() - Static method in class at.ipsquare.commons.core.util.ClassLoaders
Returns a set of all explicitly registered ClassLoaders.
restart() - Method in class at.ipsquare.commons.core.util.PerformanceLogger
Restarts the internal timer.

S

StackTrace - Class in at.ipsquare.commons.core.util
Utility methods for dealing with stack traces.
StringGenerator<T> - Interface in at.ipsquare.commons.core.interfaces
Interface for generating strings from various objects.

T

toString() - Method in class at.ipsquare.commons.core.interfaces.AbstractUnitOfWork
 

U

UnitOfWork<T> - Interface in at.ipsquare.commons.core.interfaces
An interface that represents a single Unit of Work.
UnitOfWorkExecutor - Interface in at.ipsquare.commons.core.interfaces
An API for executing UnitOfWork instances.
unregister(ClassLoader) - Static method in class at.ipsquare.commons.core.util.ClassLoaders
Unregisters a ClassLoader.
A C D E F G H L P R S T U 

Copyright © 2012-2013. All Rights Reserved.