Tabnine Logo
Table
Code IndexAdd Tabnine to your IDE (free)

How to use
Table
in
net.java.ao.schema

Best Java code snippets using net.java.ao.schema.Table (Showing top 20 results out of 315)

origin: com.atlassian.activeobjects/activeobjects-test-model

@Table("LongNameToAuthor")
public interface Author extends Entity {
  @StringLength(60)
  String getName();

  @StringLength(60)
  void setName(String name);

  @ManyToMany(Authorship.class)
  Book[] getBooks();
}

origin: net.java.dev.activeobjects/activeobjects-core

/**
 * Gets the name of the table either from the {@link Table Table annotation} if present or from the
 * {@link TableNameConverter delegate}.
 *
 * @param entityClass the entity from which to extract the table name
 * @return the table name for the given entity
 * @throws IllegalStateException if the {@link Table Table annotation} value is invalid ({@code null} or
 *                               empty {@link String})
 */
public String getName(Class<? extends RawEntity<?>> entityClass) {
  if (entityClass.isAnnotationPresent(TABLE_ANNOTATION)) {
    return postProcessingTableNameConverter.getName(validate(entityClass.getAnnotation(TABLE_ANNOTATION).value()));
  } else {
    return delegateTableNameConverter.getName(entityClass);
  }
}
origin: net.java.dev.activeobjects/activeobjects

/**
 * Gets the name of the table either from the {@link Table Table annotation} if present or from the
 * {@link TableNameConverter delegate}.
 *
 * @param entityClass the entity from which to extract the table name
 * @return the table name for the given entity
 * @throws IllegalStateException if the {@link Table Table annotation} value is invalid ({@code null} or
 *                               empty {@link String})
 */
public String getName(Class<? extends RawEntity<?>> entityClass) {
  if (entityClass.isAnnotationPresent(TABLE_ANNOTATION)) {
    return postProcessingTableNameConverter.getName(validate(entityClass.getAnnotation(TABLE_ANNOTATION).value()));
  } else {
    return delegateTableNameConverter.getName(entityClass);
  }
}
origin: com.atlassian.webhooks/atlassian-webhooks-plugin

@Table(AoWebhookEvent.TABLE_NAME)
public interface AoWebhookEvent extends Entity {

  String EVENT_ID_COLUMN = "EVENT_ID";
  String TABLE_NAME = "WEBHOOK_EVENT";
  String WEBHOOK_COLUMN = "WEBHOOK";

  // This is used to allow foreign key style queries in AO.
  // It's standard for AO to just add 'ID' to the end of the column
  // specified by the Mutator/Accessor
  String WEBHOOK_COLUMN_QUERY = WEBHOOK_COLUMN + "ID";

  @NotNull
  @Accessor(EVENT_ID_COLUMN)
  String getEventId();

  @NotNull
  @Accessor(WEBHOOK_COLUMN)
  AoWebhook getWebhook();

  @Mutator(EVENT_ID_COLUMN)
  void setEventId(@Nonnull String value);

  @Mutator(WEBHOOK_COLUMN)
  void setWebhook(@Nonnull AoWebhook webhook);
}

origin: com.atlassian.webhooks/atlassian-webhooks-plugin

@Table(AoWebhookConfigurationEntry.TABLE_NAME)
public interface AoWebhookConfigurationEntry extends Entity {
origin: com.atlassian.plugins/atlassian-connect-server-core

@Table("AddOnPropertyAO" /* Do not change the value or case of this string */)
public interface AddonPropertyAO extends Entity {
  int MAXIMUM_PROPERTY_KEY_LENGTH = 127;
origin: com.atlassian.webhooks/atlassian-webhooks-plugin

@Table("WEB_HOOK_LISTENER_AO")
public interface WebHookListenerAOV0 extends Entity
origin: com.atlassian.jira/jira-webhooks-plugin

@Table("WebhookDao")
interface IntermediateWebhookDao extends Entity {
  String getJql();
origin: com.atlassian.webhooks/atlassian-webhooks-plugin

@Table(AoWebhook.TABLE_NAME)
public interface AoWebhook extends Entity {
origin: com.atlassian.plugin.automation/automation-module

@Table ("ACTION_ENTITY")
@Preload
public static interface ActionEntity extends Entity
{
  RuleEntity getRuleEntity();
  @OneToMany
  ActionConfigEntity[] getActionConfiguration();
  @StringLength (StringLength.UNLIMITED)
  String getCompleteModuleKey();
}
origin: com.atlassian.plugin.automation/automation-module

@Table ("TRIGGER_CONFIG_VALUE")
@Preload
public static interface TriggerConfigValueEntity extends Entity
{
  TriggerConfigEntity getTriggerConfigEntity();
  @StringLength (StringLength.UNLIMITED)
  String getParamValue();
}
origin: com.atlassian.plugin.automation/automation-module

@Table ("ACTION_MESSAGE")
@Preload
public static interface ActionMessage extends Entity
{
  @StringLength (StringLength.UNLIMITED)
  String getMessage();
  AuditMessageEntity getAuditMessageEntity();
}
origin: com.atlassian.plugin.automation/automation-module

@Table ("TRIGGER_ENTITY")
@Preload
public static interface TriggerEntity extends Entity
{
  RuleEntity getRuleEntity();
  @OneToMany
  TriggerConfigEntity[] getTriggerConfiguration();
  @StringLength (StringLength.UNLIMITED)
  String getCompleteModuleKey();
}
origin: com.atlassian.plugin.automation/automation-module

@Table ("ACTION_CONFIG_VALUE")
@Preload
public static interface ActionConfigValueEntity extends Entity
{
  ActionConfigEntity getActionConfigEntity();
  @StringLength (StringLength.UNLIMITED)
  String getParamValue();
}
origin: net.java.dev.activeobjects/activeobjects-integration-test-model

/**
 * @author Daniel Spiewak
 */
@Table("personDefence")
@Preload("severity")
public interface PersonLegalDefence extends Entity {
  public int getSeverity();

  public void setSeverity(int severity);
}

origin: com.atlassian.plugin.automation/automation-module

  /**
   * ADMIN AUDIT LOG
   */
  @Table("ADMIN_AUDIT_MESSAGE")
  @Preload
  public static interface AdminAuditMessageEntity extends Entity
  {
    Date getDate();

    String getActor();

    int getRuleId();

    String getType();

    @StringLength(StringLength.UNLIMITED)
    String getMessage();
  }
}
origin: com.atlassian.plugin.automation/automation-module

/**
 * EVENT AUDIT LOG
 */
@Table ("AUDIT_MESSAGE_ENTITY")
@Preload
public static interface AuditMessageEntity extends Entity
{
  Date getDate();
  String getActor();
  int getRuleId();
  @StringLength (StringLength.UNLIMITED)
  String getMessage();
  @StringLength (StringLength.UNLIMITED)
  String getTriggerMessage();
  @OneToMany
  ActionMessage[] getActionMessages();
  @StringLength (StringLength.UNLIMITED)
  String getErrors();
}
origin: com.atlassian.plugin.automation/automation-module

@Table ("RULE_ENTITY")
@Preload
public static interface RuleEntity extends Entity
{
  @NotNull
  @Unique
  String getRuleName();
  void setRuleName(String name);
  @OneToOne
  TriggerEntity getTrigger();
  @OneToMany
  ActionEntity[] getActions();
  @NotNull
  String getActor();
  void setActor(String actor);
  boolean getEnabled();
  void setEnabled(boolean status);
}
origin: com.atlassian.plugin.automation/automation-module

@Table ("TRIGGER_CONF_ENT")
@Preload
public static interface TriggerConfigEntity extends Entity
{
  public static final String TRIGGER_CONFIG_ID = "TRIGGER_CONFIG_ENTITY_ID";
  @StringLength (StringLength.UNLIMITED)
  String getParamKey();
  TriggerEntity getTriggerEntity();
  @OneToMany
  TriggerConfigValueEntity[] getTriggerConfigValues();
  /**
   * @deprecated This has now been deprecated in favour of config values below. This method will eventually be removed
   */
  @StringLength (StringLength.UNLIMITED)
  @Deprecated
  String getParamValue();
  /**
   * @deprecated This has now been deprecated in favour of config values below. This method will eventually be removed
   */
  @StringLength (StringLength.UNLIMITED)
  @Deprecated
  void setParamValue(final String paramValue);
}
origin: com.atlassian.plugin.automation/automation-module

@Table ("ACTION_CONF_ENT")
@Preload
public static interface ActionConfigEntity extends Entity
{
  public static final String ACTION_CONFIG_ID = "ACTION_CONFIG_ENTITY_ID";
  @StringLength (StringLength.UNLIMITED)
  String getParamKey();
  ActionEntity getActionEntity();
  @OneToMany
  ActionConfigValueEntity[] getActionConfigValues();
  /**
   * @deprecated This has now been deprecated in favour of config values below. This method will eventually be
   *             removed
   */
  @StringLength (StringLength.UNLIMITED)
  @Deprecated
  String getParamValue();
  /**
   * @deprecated This has now been deprecated in favour of config values below. This method will eventually be
   *             removed
   */
  @StringLength (StringLength.UNLIMITED)
  @Deprecated
  void setParamValue(final String paramValue);
}
net.java.ao.schemaTable

Most used methods

  • <init>
  • value

Popular in Java

  • Creating JSON documents from java classes using gson
  • getApplicationContext (Context)
  • startActivity (Activity)
  • setRequestProperty (URLConnection)
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • SortedSet (java.util)
    SortedSet is a Set which iterates over its elements in a sorted order. The order is determined eithe
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now