Package org.cruxframework.crux.core.client.datasource.annotation

Examples of org.cruxframework.crux.core.client.datasource.annotation.DataSourceRecordIdentifier


  /**
   * @return
   */
    private String getDataSourceIdentifier()
    {
    DataSourceRecordIdentifier idAnnotation =
      dataSourceClass.getAnnotation(DataSourceRecordIdentifier.class);
    if (idAnnotation != null)
    {
      return idAnnotation.value();
    }

    throw new CruxGeneratorException("Error Generating DataSource ["+dataSourceClass.getName()+"]. No identifier selected. Use the @DataSourceRecordIdentifier annotation to inform the identifier");
    }
View Full Code Here

TOP

Related Classes of org.cruxframework.crux.core.client.datasource.annotation.DataSourceRecordIdentifier

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.