javax.persistence.Basic Java Examples

The following examples show how to use javax.persistence.Basic. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: IndicatorElement.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
* Gets the source organization.
*
* @return the source organization
*/
  @Basic
  @Column(name = "SOURCE_ORGANIZATION", length = 65536)
  public String getSourceOrganization() {
      return sourceOrganization;
  }
 
Example #2
Source File: Source.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
* Gets the id.
*
* @return the id
*/
  @Basic
  @Column(name = "ID")
  public String getId() {
      return id;
  }
 
Example #3
Source File: ViewRiksdagenPolitician.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
 * Gets the value of the totalDaysServedGovernment property.
 * 
 */
@Basic
@Column(name = "TOTAL_DAYS_SERVED_GOVERNMENT", precision = 20)
public long getTotalDaysServedGovernment() {
    return totalDaysServedGovernment;
}
 
Example #4
Source File: PersonElement.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
* Gets the first name.
*
* @return the first name
*/
  @Basic
  @Column(name = "FIRST_NAME")
  public String getFirstName() {
      return firstName;
  }
 
Example #5
Source File: ViewApplicationActionEventPageElementDailySummary.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
 * Gets the value of the hits property.
 * 
 */
@Basic
@Column(name = "HITS", precision = 20)
public long getHits() {
    return hits;
}
 
Example #6
Source File: DocumentProposalData.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
* Gets the wording 2.
*
* @return the wording 2
*/
  @Basic
  @Column(name = "WORDING_2")
  public String getWording2() {
      return wording2;
  }
 
Example #7
Source File: MCRDNBTRANSFERRESULTS.java    From mycore with GNU General Public License v3.0 4 votes vote down vote up
/**
 * @return the tpName
 */
@Basic
@Column(name = "TP_NAME", length = 9, nullable = false)
public String getTpName() {
    return tpName;
}
 
Example #8
Source File: BallotDocumentElement.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
* Gets the org.
*
* @return the org
*/
  @Basic
  @Column(name = "ORG")
  public String getOrg() {
      return org;
  }
 
Example #9
Source File: PersonData.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
* Gets the hangar guid.
*
* @return the hangar guid
*/
  @Basic
  @Column(name = "HANGAR_GUID")
  public String getHangarGuid() {
      return hangarGuid;
  }
 
Example #10
Source File: ViewRiksdagenCommitteeBallotDecisionPoliticianSummary.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
 * Gets the value of the partyYesVotes property.
 * 
 */
@Basic
@Column(name = "PARTY_YES_VOTES", precision = 20)
public long getPartyYesVotes() {
    return partyYesVotes;
}
 
Example #11
Source File: ViewRiksdagenPolitician.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
 * Gets the value of the activeParty property.
 * 
 */
@Basic
@Column(name = "ACTIVE_PARTY")
public boolean isActiveParty() {
    return activeParty;
}
 
Example #12
Source File: ViewRiksdagenCommittee.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
 * Gets the value of the totalAssignments property.
 * 
 */
@Basic
@Column(name = "TOTAL_ASSIGNMENTS", precision = 20)
public long getTotalAssignments() {
    return totalAssignments;
}
 
Example #13
Source File: ViewRiksdagenVoteDataBallotPartySummary.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
 * Gets the value of the partyApproved property.
 * 
 */
@Basic
@Column(name = "PARTY_APPROVED")
public boolean isPartyApproved() {
    return partyApproved;
}
 
Example #14
Source File: Topic.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
* Gets the value.
*
* @return the value
*/
  @Basic
  @Column(name = "VALUE_")
  public String getValue() {
      return value;
  }
 
Example #15
Source File: BallotDocumentElement.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
* Gets the system date.
*
* @return the system date
*/
  @Basic
  @Column(name = "SYSTEM_DATE")
  public String getSystemDate() {
      return systemDate;
  }
 
Example #16
Source File: DocumentElement.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
* Gets the made public date.
*
* @return the made public date
*/
  @Basic
  @Column(name = "MADE_PUBLIC_DATE")
  public String getMadePublicDate() {
      return madePublicDate;
  }
 
Example #17
Source File: ViewRiksdagenVoteDataBallotSummary.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
 * Gets the value of the yesVotes property.
 * 
 */
@Basic
@Column(name = "YES_VOTES", precision = 20)
public long getYesVotes() {
    return yesVotes;
}
 
Example #18
Source File: ViewRiksdagenParty.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
 * Gets the value of the headCount property.
 * 
 */
@Basic
@Column(name = "HEAD_COUNT", precision = 20)
public long getHeadCount() {
    return headCount;
}
 
Example #19
Source File: CommitteeDocumentData.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
* Gets the sub title.
*
* @return the sub title
*/
  @Basic
  @Column(name = "SUB_TITLE")
  public String getSubTitle() {
      return subTitle;
  }
 
Example #20
Source File: SwedenPoliticalParty.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
* Gets the phone number.
*
* @return the phone number
*/
  @Basic
  @Column(name = "PHONE_NUMBER")
  public String getPhoneNumber() {
      return phoneNumber;
  }
 
Example #21
Source File: DocumentData.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
* Gets the title.
*
* @return the title
*/
  @Basic
  @Column(name = "TITLE", length = 65536)
  public String getTitle() {
      return title;
  }
 
Example #22
Source File: ViewRiksdagenVoteDataBallotSummary.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
 * Gets the value of the approved property.
 * 
 */
@Basic
@Column(name = "APPROVED")
public boolean isApproved() {
    return approved;
}
 
Example #23
Source File: ViewRiksdagenPolitician.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
 * Gets the value of the totalDaysServed property.
 * 
 */
@Basic
@Column(name = "TOTAL_DAYS_SERVED", precision = 20)
public long getTotalDaysServed() {
    return totalDaysServed;
}
 
Example #24
Source File: ViewRiksdagenPartyBallotSupportAnnualSummary.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
 * Gets the value of the disagreePercentage property.
 * 
 */
@Basic
@Column(name = "DISAGREE_PERCENTAGE", precision = 20)
public long getDisagreePercentage() {
    return disagreePercentage;
}
 
Example #25
Source File: ViewRiksdagenMinistry.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
 * Gets the value of the currentMemberSize property.
 * 
 */
@Basic
@Column(name = "CURRENT_MEMBER_SIZE", precision = 20)
public long getCurrentMemberSize() {
    return currentMemberSize;
}
 
Example #26
Source File: ViewRiksdagenCommitteeBallotDecisionPoliticianSummary.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
 * Gets the value of the bornYear property.
 * 
 */
@Basic
@Column(name = "BORN_YEAR", precision = 10, scale = 0)
public int getBornYear() {
    return bornYear;
}
 
Example #27
Source File: State.java    From livingdoc-core with GNU General Public License v3.0 4 votes vote down vote up
@Basic
@Column(name = "CODE", unique = true, nullable = false, length = 255)
public String getCode() {
    return code;
}
 
Example #28
Source File: ViewRiksdagenVoteDataBallotPoliticianSummaryDaily.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
 * Gets the value of the politicianYesVotes property.
 * 
 */
@Basic
@Column(name = "POLITICIAN_YES_VOTES", precision = 20)
public long getPoliticianYesVotes() {
    return politicianYesVotes;
}
 
Example #29
Source File: ViewRiksdagenGovermentRoleMember.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
 * Gets the value of the active property.
 * 
 */
@Basic
@Column(name = "ACTIVE")
public boolean isActive() {
    return active;
}
 
Example #30
Source File: DocumentElement.java    From cia with Apache License 2.0 4 votes vote down vote up
/**
* Gets the debate name.
*
* @return the debate name
*/
  @Basic
  @Column(name = "DEBATE_NAME")
  public String getDebateName() {
      return debateName;
  }