Package org.apache.jackrabbit.ocm.exception

Examples of org.apache.jackrabbit.ocm.exception.IncorrectPersistentClassException


    * @see org.apache.jackrabbit.ocm.mapper.Mapper#getClassDescriptorByClass(java.lang.Class)
    */
   public ClassDescriptor getClassDescriptorByClass(Class clazz) {
     ClassDescriptor descriptor = mappingDescriptor.getClassDescriptorByName(clazz.getName());
     if (descriptor==null) {
      throw new IncorrectPersistentClassException("Class of type: " + clazz.getName() + " has no descriptor.");
     }
       return descriptor ;
   }
View Full Code Here


   * @see org.apache.jackrabbit.ocm.mapper.Mapper#getClassDescriptorByNodeType(String)
   */
  public ClassDescriptor getClassDescriptorByNodeType(String jcrNodeType) {
    ClassDescriptor descriptor = mappingDescriptor.getClassDescriptorByNodeType(jcrNodeType);
     if (descriptor==null) {
      throw new IncorrectPersistentClassException("Node type: " + jcrNodeType + " has no descriptor.");
     }
      return descriptor ;     
  }  
View Full Code Here

    * @see org.apache.jackrabbit.ocm.mapper.Mapper#getClassDescriptorByClass(java.lang.Class)
    */
   public ClassDescriptor getClassDescriptorByClass(Class clazz) {
     ClassDescriptor descriptor = mappingDescriptor.getClassDescriptorByName(clazz.getName());
     if (descriptor==null) {
      throw new IncorrectPersistentClassException("Class of type: " + clazz.getName() + " has no descriptor.");
     }
       return descriptor ;
   }
View Full Code Here

   * @see org.apache.jackrabbit.ocm.mapper.Mapper#getClassDescriptorByNodeType(String)
   */
  public ClassDescriptor getClassDescriptorByNodeType(String jcrNodeType) {
    ClassDescriptor descriptor = mappingDescriptor.getClassDescriptorByNodeType(jcrNodeType);
     if (descriptor==null) {
      throw new IncorrectPersistentClassException("Node type: " + jcrNodeType + " has no descriptor.");
     }
      return descriptor ;
  }
View Full Code Here

    * @see org.apache.jackrabbit.ocm.mapper.Mapper#getClassDescriptorByClass(java.lang.Class)
    */
   public ClassDescriptor getClassDescriptorByClass(Class clazz) {
     ClassDescriptor descriptor = mappingDescriptor.getClassDescriptorByName(clazz.getName());
     if (descriptor==null) {
      throw new IncorrectPersistentClassException("Class of type: " + clazz.getName() + " has no descriptor.");
     }
       return descriptor ;
   }
View Full Code Here

   * @see org.apache.jackrabbit.ocm.mapper.Mapper#getClassDescriptorByNodeType(String)
   */
  public ClassDescriptor getClassDescriptorByNodeType(String jcrNodeType) {
    ClassDescriptor descriptor = mappingDescriptor.getClassDescriptorByNodeType(jcrNodeType);
     if (descriptor==null) {
      throw new IncorrectPersistentClassException("Node type: " + jcrNodeType + " has no descriptor.");
     }
      return descriptor ;
  }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.ocm.exception.IncorrectPersistentClassException

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.