Skip navigation links
A B C D E F G H I L M N O P Q R S T U V W 

A

AbstractAttribute - Class in org.droitateddb.schema
Abstract definition of an attribute.
AbstractAttribute(ColumnType, String, Class<?>, int, ColumnValidator...) - Constructor for class org.droitateddb.schema.AbstractAttribute
 
AbstractAttribute(ColumnType, String, String, Class<?>, int, ColumnValidator...) - Constructor for class org.droitateddb.schema.AbstractAttribute
 
AccumulatedValidationResult - Class in org.droitateddb.validation
Collects the validation results of multiple validator annotations
AccumulatedValidationResult() - Constructor for class org.droitateddb.validation.AccumulatedValidationResult
 
addError(ValidationResult) - Method in class org.droitateddb.validation.AccumulatedValidationResult
 
addErrors(List<ValidationResult>) - Method in class org.droitateddb.validation.AccumulatedValidationResult
 
apply(SQLiteDatabase) - Method in interface org.droitateddb.DbFunction
Execute an action on the database and return an appropriate result
ASSOCIATIONS_INTERFACE - Static variable in class org.droitateddb.schema.SchemaConstants
 
AssociationType - Enum in org.droitateddb.schema
 
ATTRIBUTE_SUFFIX - Static variable in class org.droitateddb.schema.SchemaConstants
 
ATTRIBUTES - Static variable in class org.droitateddb.schema.SchemaConstants
 
AutoIncrement - Annotation Type in org.droitateddb.entity
Marks a field within a entity class to be an auto incremented value.

B

BaseContentProvider - Class in org.droitateddb
The BaseContentProvider is the base class of all generated ContentProvider for Entity classes.
BaseContentProvider() - Constructor for class org.droitateddb.BaseContentProvider
 
BlobAttribute - Class in org.droitateddb.schema
Definition of a BLOB Attribute.
BlobAttribute(String, Class<?>, int, ColumnValidator...) - Constructor for class org.droitateddb.schema.BlobAttribute
 
BlobAttribute(String, String, Class<?>, int, ColumnValidator...) - Constructor for class org.droitateddb.schema.BlobAttribute
 

C

CLASS_NAME - Static variable in class org.droitateddb.schema.SchemaConstants
 
className() - Method in class org.droitateddb.schema.EntityInfo
 
close() - Method in class org.droitateddb.ConnectedEntityService
 
close() - Method in class org.droitateddb.EntityService
Deprecated.
closeDB(SQLiteDatabase) - Method in class org.droitateddb.ConnectedEntityService
 
closeDB(SQLiteDatabase) - Method in class org.droitateddb.EntityService
 
Column - Annotation Type in org.droitateddb.entity
Marks a field as a column of a database table.
columnIndex() - Method in class org.droitateddb.schema.AbstractAttribute
 
columnName() - Method in class org.droitateddb.schema.AbstractAttribute
 
ColumnType - Enum in org.droitateddb.schema
Supported column types for SQLite.
ColumnValidator - Class in org.droitateddb.schema
Information holder for validation, containing the validator annotation, the implementation and the parameters.
ColumnValidator(Class<? extends Annotation>, Class<? extends CustomValidator<?, ?>>, Object...) - Constructor for class org.droitateddb.schema.ColumnValidator
 
CombinedCursor<T> - Interface in org.droitateddb.cursor
 
CombinedCursorImpl<T> - Class in org.droitateddb.cursor
 
ConnectedEntityService<E> - Class in org.droitateddb
Provides a version of the EntityService with an open connection to the SQLiteDatabase.
ConnectedEntityService(Context, Class<E>) - Constructor for class org.droitateddb.ConnectedEntityService
Creates a ConnectedEntityService for the given Entity
consume(SQLiteDatabase) - Method in interface org.droitateddb.DbConsumer
Allows execution on an open database connection
consumeDatabase(DbConsumer) - Method in class org.droitateddb.DbCreator
Execute an action on the database.
create(Context, Cursor, EntityInfo, Class<C>) - Static method in class org.droitateddb.cursor.CombinedCursorImpl
 
Create - Annotation Type in org.droitateddb.hooks
Marks the hook for the database create to be implemented in.
CREATE_HOOK - Static variable in class org.droitateddb.schema.SchemaConstants
 
CREATOR - Static variable in class org.droitateddb.FlatEntityParcelable
 
CursorUtil - Class in org.droitateddb
Provides utility methods for cursors.
CursorUtil() - Constructor for class org.droitateddb.CursorUtil
 
CustomValidator<A extends java.lang.annotation.Annotation,T> - Interface in org.droitateddb.validation
Interface for implementing custom validators, that can be applied to columns in an entity

D

DatabaseValidator<T> - Class in org.droitateddb
Validates entities by their schema definition
DatabaseValidator(Context) - Constructor for class org.droitateddb.DatabaseValidator
 
DB - Static variable in class org.droitateddb.schema.SchemaConstants
 
DB_NAME - Static variable in class org.droitateddb.schema.SchemaConstants
 
DB_VERSION - Static variable in class org.droitateddb.schema.SchemaConstants
 
dbConnection - Static variable in class org.droitateddb.DbCreator
 
DbConsumer - Interface in org.droitateddb
Execute an action on the database
DbCreate - Interface in org.droitateddb.hooks
Callback for additional initialization on the SQLite database.
DbCreator - Class in org.droitateddb
Handles db creation and updates.
DbCreator(Context, PersistenceDefinition) - Constructor for class org.droitateddb.DbCreator
 
dbCreator - Variable in class org.droitateddb.EntityService
 
DbFunction<T> - Interface in org.droitateddb
A function executable on an open database connection
DbUpdate - Interface in org.droitateddb.hooks
Callback for updating the SQLite database on version change.
definition() - Method in class org.droitateddb.schema.EntityInfo
 
delete(Uri, String, String[]) - Method in class org.droitateddb.BaseContentProvider
 
delete(E) - Method in class org.droitateddb.EntityService
Deletes the given Entity from the database
delete(int) - Method in class org.droitateddb.EntityService
Deletes the data of the Entity for the given id
describeContents() - Method in class org.droitateddb.FlatEntityParcelable
 

E

Entity - Annotation Type in org.droitateddb.entity
Declares a class to be an entity.
EntityInfo - Class in org.droitateddb.schema
Description of an Entity.
EntityInfo(String, String, Class<?>) - Constructor for class org.droitateddb.schema.EntityInfo
 
EntityInfo(String, String, Class<?>, boolean) - Constructor for class org.droitateddb.schema.EntityInfo
 
EntityService<E> - Class in org.droitateddb
Provides support for executing CRUD operations on Entity classes, such getting them from the database or saving them to the database.
EntityService(Context, Class<E>) - Constructor for class org.droitateddb.EntityService
Creates a EntityService for the given Entity.
EntityService(Context, Class<E>, ValidationToggle) - Constructor for class org.droitateddb.EntityService
Creates a EntityService for the given Entity
ERROR_CODE - Static variable in class org.droitateddb.validation.LengthValidator
 
ERROR_CODE - Static variable in class org.droitateddb.validation.MaxValidator
 
ERROR_CODE - Static variable in class org.droitateddb.validation.MinValidator
 
ERROR_CODE - Static variable in class org.droitateddb.validation.NotNullValidator
 
ERROR_CODE - Static variable in class org.droitateddb.validation.PatternValidator
 

F

fieldName() - Method in class org.droitateddb.schema.AbstractAttribute
 
find(String, String[], String) - Method in class org.droitateddb.EntityService
Search for Entitys in the database with basic SQL WHERE statements.
FlatEntityParcelable<E> - Class in org.droitateddb
Provides the possibility to wrap a data object into a Parcel.
FlatEntityParcelable(E) - Constructor for class org.droitateddb.FlatEntityParcelable
 
FlatEntityParcelable(Parcel) - Constructor for class org.droitateddb.FlatEntityParcelable
 
FOREIGN_KEY - Static variable in class org.droitateddb.schema.SchemaConstants
 
FROM_SUFFIX - Static variable in class org.droitateddb.schema.SchemaConstants
 
functionOnDatabase(DbFunction<T>) - Method in class org.droitateddb.DbCreator
Execute a function on the database, to return some values.

G

GENERATED_SUFFIX - Static variable in class org.droitateddb.schema.SchemaConstants
 
get() - Method in class org.droitateddb.EntityService
Reads all Entitys of the service specific type from the database
get(int) - Method in class org.droitateddb.EntityService
Gets a specific Entity according to the given id
getAll() - Method in class org.droitateddb.cursor.CombinedCursorImpl
 
getAll() - Method in interface org.droitateddb.cursor.ObjectCursor
 
getAssociatedType() - Method in class org.droitateddb.schema.ToManyAssociation
 
getAssociatedType() - Method in class org.droitateddb.schema.ToOneAssociation
 
getAssociationAttribute() - Method in class org.droitateddb.schema.ToOneAssociation
 
getAuthority() - Method in class org.droitateddb.BaseContentProvider
Has to return the authority to be used for this ContentProvider.
getColumnValidators() - Method in class org.droitateddb.schema.AbstractAttribute
 
getCurrent() - Method in class org.droitateddb.cursor.CombinedCursorImpl
 
getCurrent() - Method in interface org.droitateddb.cursor.ObjectCursor
 
getDatabaseConnection() - Method in class org.droitateddb.DbCreator
Gives you a database connection you can access the database with.
getEntity() - Method in class org.droitateddb.FlatEntityParcelable
Retrieve the wrapped data object.
getEntityInfo() - Method in class org.droitateddb.BaseContentProvider
Has to return metadata of the Entity this ContentProvider is for.
getEntityURIPart() - Method in class org.droitateddb.BaseContentProvider
 
getErrorCode() - Method in class org.droitateddb.validation.ValidationResult
 
getErrorMessage() - Method in class org.droitateddb.validation.ValidationResult
 
getErrors() - Method in class org.droitateddb.validation.AccumulatedValidationResult
 
getErrors() - Method in exception org.droitateddb.validation.InvalidEntityException
 
getFirst() - Method in class org.droitateddb.cursor.CombinedCursorImpl
 
getFirst() - Method in interface org.droitateddb.cursor.ObjectCursor
 
getIdAttribute() - Method in class org.droitateddb.BaseContentProvider
Has to return the attribute describing the primary key of the Entity.
getInstance(Context) - Static method in class org.droitateddb.DbCreator
 
getLast() - Method in class org.droitateddb.cursor.CombinedCursorImpl
 
getLast() - Method in interface org.droitateddb.cursor.ObjectCursor
 
getLinkTableSchema() - Method in class org.droitateddb.schema.ToManyAssociation
 
getNameInEntity() - Method in class org.droitateddb.schema.ToManyAssociation
 
getNameInEntity() - Method in class org.droitateddb.schema.ToOneAssociation
 
getNext() - Method in class org.droitateddb.cursor.CombinedCursorImpl
 
getNext(int) - Method in class org.droitateddb.cursor.CombinedCursorImpl
 
getNext() - Method in interface org.droitateddb.cursor.ObjectCursor
Returns the element at the next position of the ObjectCursor.
getNext(int) - Method in interface org.droitateddb.cursor.ObjectCursor
 
getNonNullValueFromCursor(Cursor) - Method in class org.droitateddb.schema.AbstractAttribute
 
getNonNullValueFromCursor(Cursor) - Method in class org.droitateddb.schema.BlobAttribute
 
getNonNullValueFromCursor(Cursor) - Method in class org.droitateddb.schema.IntegerAttribute
 
getNonNullValueFromCursor(Cursor) - Method in class org.droitateddb.schema.RealAttribute
 
getNonNullValueFromCursor(Cursor) - Method in class org.droitateddb.schema.TextAttribute
 
getObjectCursor(Cursor) - Static method in class org.droitateddb.CursorUtil
Convert a standard Android Cursor into a ObjectCursor.
getOne() - Method in class org.droitateddb.cursor.CombinedCursorImpl
 
getOne() - Method in interface org.droitateddb.cursor.ObjectCursor
 
getParams() - Method in class org.droitateddb.schema.ColumnValidator
 
getPosition() - Method in interface org.droitateddb.cursor.ObjectCursor
 
getPrevious() - Method in class org.droitateddb.cursor.CombinedCursorImpl
 
getPrevious(int) - Method in class org.droitateddb.cursor.CombinedCursorImpl
 
getPrevious() - Method in interface org.droitateddb.cursor.ObjectCursor
 
getPrevious(int) - Method in interface org.droitateddb.cursor.ObjectCursor
 
getReadable() - Method in enum org.droitateddb.schema.ColumnType
 
getReadableDatabase() - Method in class org.droitateddb.DbCreator
Deprecated.
Don't use this method any more. Use getDatabaseConnection.
getType(Uri) - Method in class org.droitateddb.BaseContentProvider
 
getType() - Method in class org.droitateddb.schema.ToManyAssociation
 
getType() - Method in class org.droitateddb.schema.ToOneAssociation
 
getValidatorAnnotation() - Method in class org.droitateddb.schema.ColumnValidator
 
getValidatorClass() - Method in class org.droitateddb.schema.ColumnValidator
 
getValueFromCursor(Cursor) - Method in class org.droitateddb.schema.AbstractAttribute
 
getWritableDatabase() - Method in class org.droitateddb.DbCreator
Deprecated.
Don't use this method any more. Use getDatabaseConnection.

H

handle(Exception) - Static method in class org.droitateddb.Utilities
 
hasNext() - Method in class org.droitateddb.cursor.CombinedCursorImpl
 
hasNext() - Method in interface org.droitateddb.cursor.ObjectCursor
 
hasPrevious() - Method in class org.droitateddb.cursor.CombinedCursorImpl
 
hasPrevious() - Method in interface org.droitateddb.cursor.ObjectCursor
 
hasValidation() - Method in class org.droitateddb.schema.EntityInfo
 

I

INDEX_SUFFIX - Static variable in class org.droitateddb.schema.SchemaConstants
 
INFO_SUFFIX - Static variable in class org.droitateddb.schema.SchemaConstants
 
insert(Uri, ContentValues) - Method in class org.droitateddb.BaseContentProvider
 
IntegerAttribute - Class in org.droitateddb.schema
Definition of a INTEGER Attribute.
IntegerAttribute(String, Class<?>, int, ColumnValidator...) - Constructor for class org.droitateddb.schema.IntegerAttribute
 
IntegerAttribute(String, String, Class<?>, int, ColumnValidator...) - Constructor for class org.droitateddb.schema.IntegerAttribute
 
invalid(int, String) - Static method in class org.droitateddb.validation.ValidationResult
 
InvalidEntityException - Exception in org.droitateddb.validation
This exception is thrown when you try to save invalid entity
InvalidEntityException(AccumulatedValidationResult) - Constructor for exception org.droitateddb.validation.InvalidEntityException
 
isClosed() - Method in interface org.droitateddb.cursor.ObjectCursor
 
isValid() - Method in class org.droitateddb.validation.AccumulatedValidationResult
 
isValid() - Method in class org.droitateddb.validation.ValidationResult
 
iterator() - Method in class org.droitateddb.cursor.CombinedCursorImpl
 
iterator() - Method in interface org.droitateddb.cursor.ObjectCursor
 

L

Length - Annotation Type in org.droitateddb.validation
Length validator, that checks the length of a String.
LengthValidator - Class in org.droitateddb.validation
Implementation of the @Length validation annotation
LengthValidator() - Constructor for class org.droitateddb.validation.LengthValidator
 
LINK - Static variable in class org.droitateddb.schema.SchemaConstants
 

M

Max - Annotation Type in org.droitateddb.validation
Max validator, that checks the maximum value of a number.
MaxValidator - Class in org.droitateddb.validation
Implementation of the @Max validation annotation
MaxValidator() - Constructor for class org.droitateddb.validation.MaxValidator
 
Min - Annotation Type in org.droitateddb.validation
Min validator, that checks the minimum value of a number.
MinValidator - Class in org.droitateddb.validation
Implementation of the @Min validation annotation
MinValidator() - Constructor for class org.droitateddb.validation.MinValidator
 
moveToFirst() - Method in interface org.droitateddb.cursor.ObjectCursor
Move the cursor to the first row.
moveToLast() - Method in interface org.droitateddb.cursor.ObjectCursor
Move the cursor to the last row.
moveToNext() - Method in interface org.droitateddb.cursor.ObjectCursor
Move the cursor to the next row.
moveToPosition(int) - Method in interface org.droitateddb.cursor.ObjectCursor
Move the cursor to an absolute position.
moveToPrevious() - Method in interface org.droitateddb.cursor.ObjectCursor
Move the cursor to the previous row.

N

NotNull - Annotation Type in org.droitateddb.validation
NotNull validator, that checks if a object is set.
NotNullValidator - Class in org.droitateddb.validation
Implementation of the @NotNull validation annotation.
NotNullValidator() - Constructor for class org.droitateddb.validation.NotNullValidator
 

O

ObjectCursor<T> - Interface in org.droitateddb.cursor
Cursor for objects of type T which works on the original Cursor.
onCreate() - Method in class org.droitateddb.BaseContentProvider
 
onCreate(SQLiteDatabase) - Method in class org.droitateddb.DbCreator
 
onCreate(SQLiteDatabase) - Method in interface org.droitateddb.hooks.DbCreate
Implement the specific db initialization in this method.
onUpdate(SQLiteDatabase, int, int) - Method in interface org.droitateddb.hooks.DbUpdate
Implement the specific db update in this method.
onUpgrade(SQLiteDatabase, int, int) - Method in class org.droitateddb.DbCreator
 
onValidate(A, T) - Method in interface org.droitateddb.validation.CustomValidator
 
onValidate(Length, String) - Method in class org.droitateddb.validation.LengthValidator
 
onValidate(Max, Number) - Method in class org.droitateddb.validation.MaxValidator
 
onValidate(Min, Number) - Method in class org.droitateddb.validation.MinValidator
 
onValidate(NotNull, Object) - Method in class org.droitateddb.validation.NotNullValidator
 
onValidate(Pattern, String) - Method in class org.droitateddb.validation.PatternValidator
 
openDB() - Method in class org.droitateddb.ConnectedEntityService
 
openDB() - Method in class org.droitateddb.EntityService
 
org.droitateddb - package org.droitateddb
 
org.droitateddb.config - package org.droitateddb.config
 
org.droitateddb.cursor - package org.droitateddb.cursor
 
org.droitateddb.entity - package org.droitateddb.entity
 
org.droitateddb.hooks - package org.droitateddb.hooks
 
org.droitateddb.schema - package org.droitateddb.schema
 
org.droitateddb.validation - package org.droitateddb.validation
 

P

Pattern - Annotation Type in org.droitateddb.validation
Pattern validator, that matches a String to the given regular expression
PatternValidator - Class in org.droitateddb.validation
Implementation of the @Pattern validation annotation
PatternValidator() - Constructor for class org.droitateddb.validation.PatternValidator
 
Persistence - Annotation Type in org.droitateddb.config
Enables the processing of the persistence framework.
PrimaryKey - Annotation Type in org.droitateddb.entity
Marks a field as the primary key of an @Entity.
PROJECTION - Static variable in class org.droitateddb.schema.SchemaConstants
 

Q

query(Uri, String[], String, String[], String) - Method in class org.droitateddb.BaseContentProvider
 
query(String, String[], String, String[], String, String, String) - Method in class org.droitateddb.DbCreator
Executes a query on the database.

R

rawQuery(String) - Method in class org.droitateddb.DbCreator
Executes a raw query on the database.
RealAttribute - Class in org.droitateddb.schema
Definition of a REAL Attribute.
RealAttribute(String, Class<?>, int, ColumnValidator...) - Constructor for class org.droitateddb.schema.RealAttribute
 
RealAttribute(String, String, Class<?>, int, ColumnValidator...) - Constructor for class org.droitateddb.schema.RealAttribute
 
reduceDatabaseConnection() - Method in class org.droitateddb.DbCreator
Reduce the connection opened.
Relationship - Annotation Type in org.droitateddb.entity
Indicates an association between to Entity elements.
resolveAssociations(E) - Method in class org.droitateddb.EntityService
Resolves the associations to a given Entity object and all underlying associations within the object graph.
resolveAssociations(E, int) - Method in class org.droitateddb.EntityService
Resolves the associations to a given Entity object.
resolveColumnType(String) - Static method in enum org.droitateddb.schema.ColumnType
Resolves the matching ColumnType to a fieldType.

S

save(E) - Method in class org.droitateddb.EntityService
Stores the given Entity to the database.
save(E, int) - Method in class org.droitateddb.EntityService
Stores the given Entity to the database.
save(Collection<E>) - Method in class org.droitateddb.EntityService
Stores all given Entitys in the Collection to the database.
save(Collection<E>, int) - Method in class org.droitateddb.EntityService
Stores all given Entitys in the Collection to the database.
SchemaConstants - Class in org.droitateddb.schema
Constant values used for code generation and database access.
SchemaConstants() - Constructor for class org.droitateddb.schema.SchemaConstants
 
size() - Method in class org.droitateddb.cursor.CombinedCursorImpl
 
size() - Method in interface org.droitateddb.cursor.ObjectCursor
 
SQL_CREATION - Static variable in class org.droitateddb.schema.SchemaConstants
 
SQL_INDEX - Static variable in class org.droitateddb.schema.SchemaConstants
 
sqliteType() - Method in class org.droitateddb.schema.AbstractAttribute
 

T

table() - Method in class org.droitateddb.schema.EntityInfo
 
TABLE - Static variable in class org.droitateddb.schema.SchemaConstants
 
TABLE_NAME - Static variable in class org.droitateddb.schema.SchemaConstants
 
TextAttribute - Class in org.droitateddb.schema
Definition of a TEXT Attribute.
TextAttribute(String, Class<?>, int, ColumnValidator...) - Constructor for class org.droitateddb.schema.TextAttribute
 
TextAttribute(String, String, Class<?>, int, ColumnValidator...) - Constructor for class org.droitateddb.schema.TextAttribute
 
TO_SUFFIX - Static variable in class org.droitateddb.schema.SchemaConstants
 
ToManyAssociation - Class in org.droitateddb.schema
 
ToManyAssociation(String, Class<?>, Class<?>) - Constructor for class org.droitateddb.schema.ToManyAssociation
 
ToOneAssociation - Class in org.droitateddb.schema
 
ToOneAssociation(String, Class<?>, AbstractAttribute) - Constructor for class org.droitateddb.schema.ToOneAssociation
 
toString() - Method in class org.droitateddb.schema.AbstractAttribute
Returns also the columnName of the attribute
toString() - Method in class org.droitateddb.validation.ValidationResult
 
type() - Method in class org.droitateddb.schema.AbstractAttribute
 

U

update(Uri, ContentValues, String, String[]) - Method in class org.droitateddb.BaseContentProvider
 
Update - Annotation Type in org.droitateddb.hooks
Marks the hook for the database update to be implemented in.
UPDATE_HOOK - Static variable in class org.droitateddb.schema.SchemaConstants
 
uri(String) - Static method in class org.droitateddb.BaseContentProvider
Returns a Uri for the using it with a ContentResolver to access this ContentProvider.
uriForItem(String, long) - Static method in class org.droitateddb.BaseContentProvider
Returns a Uri for the using it with a ContentResolver to access this ContentProvider.
Utilities - Class in org.droitateddb
Provides utility methods for droitated DB.
Utilities() - Constructor for class org.droitateddb.Utilities
 

V

valid() - Static method in class org.droitateddb.validation.ValidationResult
 
validate(Collection<T>) - Method in class org.droitateddb.DatabaseValidator
 
validate(Collection<T>, int) - Method in class org.droitateddb.DatabaseValidator
 
validate(T) - Method in class org.droitateddb.DatabaseValidator
 
validate(T, int) - Method in class org.droitateddb.DatabaseValidator
 
ValidationResult - Class in org.droitateddb.validation
The result of a validation
ValidationToggle - Enum in org.droitateddb.validation
Allows to toggle the use of the validation feature in the EntityService
Validator - Annotation Type in org.droitateddb.validation
Marks validator annotations.
valueOf(String) - Static method in enum org.droitateddb.schema.AssociationType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.droitateddb.schema.ColumnType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.droitateddb.validation.ValidationToggle
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.droitateddb.schema.AssociationType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.droitateddb.schema.ColumnType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.droitateddb.validation.ValidationToggle
Returns an array containing the constants of this enum type, in the order they are declared.

W

writeToParcel(Parcel, int) - Method in class org.droitateddb.FlatEntityParcelable
 
A B C D E F G H I L M N O P Q R S T U V W 
Skip navigation links

Copyright © 2015 arconsis IT-Solutions GmbH. All Rights Reserved.