Package org.lilyproject.repository.api

Examples of org.lilyproject.repository.api.FieldTypeExistsException


            newFieldType = fieldType.clone();
            newFieldType.setId(id);

            // Check if there is already a fieldType with this name
            if (schemaCache.fieldTypeExists(fieldType.getName())) {
                throw new FieldTypeExistsException(fieldType);
            }

            // FIXME: the flow here is different than for record types, were first the name reservation is taken
            // and then the existence is checked.
            // Check for concurrency
View Full Code Here

TOP

Related Classes of org.lilyproject.repository.api.FieldTypeExistsException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.