congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
Table.<init>
Code IndexAdd Tabnine to your IDE (free)

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

Best Java code snippets using net.java.ao.schema.Table.<init> (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: 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(AoWebhook.TABLE_NAME)
public interface AoWebhook extends Entity {
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.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);
}
origin: com.atlassian.labs.hipchat/hipchat-for-jira-plugin

@Table ("PROJECT_CONFIG")
@Preload
public interface ProjectConfigurationAO extends ProjectConfiguration, Entity {
origin: Eernie/bitbucket-webhooks-plugin

@Table("WHConfig")
@Preload
public interface WebHookConfiguration extends Entity
net.java.ao.schemaTable<init>

Popular methods of Table

  • value

Popular in Java

  • Reactive rest calls using spring rest template
  • getSupportFragmentManager (FragmentActivity)
  • notifyDataSetChanged (ArrayAdapter)
  • compareTo (BigDecimal)
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • JFileChooser (javax.swing)
  • Top Sublime Text plugins
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