/** * Gets the name. * * @return the name */ @NotNull @Length(min = 1, max = DEFAULT_STRING_COLUMN_SIZE) @Index(name = "idx_name") public String getName() { return this.name; }
/** * Gets the title. * * @return the title */ @Length(min = 1, max = DEFAULT_STRING_COLUMN_SIZE) @NotNull @Index(name = "idx_title") @AttributePolicy(allow = SecurityPolicy.BROWSE_POLICY_NAME) public String getTitle() { return this.title; }
/** * Gets the name. * * @return the name */ @Length(min = 1, max = DEFAULT_STRING_COLUMN_SIZE) @NotNull public String getName() { return name; }
/** * @return the firstName */ @Column(length = FIRST_NAME_FIELD_LENGTH) @NotNull @Length(min = 1, max = FIRST_NAME_FIELD_LENGTH) public String getFirstName() { return firstName; }
/** * @return the lastName */ @Column(length = LAST_NAME_FIELD_LENGTH) @NotNull @Length(min = 1, max = LAST_NAME_FIELD_LENGTH) public String getLastName() { return lastName; }
/** * @return the emaiId */ @Column(length = EMAIL_FIELD_LENGTH) @NotNull @Email @Length(min = 1, max = EMAIL_FIELD_LENGTH) public String getEmail() { return email; }
/** * @return the phone */ @Column(length = PHONE_NUMBER_FIELD_LENGTH) @NotNull @Length(min = 1, max = PHONE_NUMBER_FIELD_LENGTH) @Pattern(regex = "(\\+)?([-\\._\\(\\) ]?[\\d]{3,20}[-\\._\\(\\) ]?){2,10}") public String getPhone() { return phone; }
/** * @return the fax */ @Column(length = FAX_FIELD_LENGTH) @Length(max = FAX_FIELD_LENGTH) @Pattern(regex = "(\\+)?([-\\._\\(\\) ]?[\\d]{3,20}[-\\._\\(\\) ]?){2,10}||^$") public String getFax() { return fax; }
/** * @return the organization */ @Column(length = ORGANIZATION_FIELD_LENGTH) @NotNull @Length(min = 1, max = ORGANIZATION_FIELD_LENGTH) public String getOrganization() { return organization; }
/** * @return the address1 */ @Column(length = ADDRESS1_FIELD_LENGTH) @NotNull @Length(min = 1, max = ADDRESS1_FIELD_LENGTH) public String getAddress1() { return address1; }
/** * @return the city */ @Column(length = CITY_FIELD_LENGTH) @NotNull @Length(min = 1, max = CITY_FIELD_LENGTH) public String getCity() { return city; }
/** * @return the zip */ @Column(length = ZIP_FIELD_LENGTH) @NotNull @Length(min = 1, max = ZIP_FIELD_LENGTH) public String getZip() { return zip; }
@NotNull(message="Credit card number is required") @Length(min=16, max=16, message="Credit card number must 16 digits long") @Pattern(regex="^\\d*$", message="Credit card number must be numeric") public String getCreditCard() { return creditCard; }
@Id @Length(min=4, max=15) @Pattern(regex="^\\w*$", message="not a valid username") public String getUsername() { return username; }
@NotNull @Length(min=4,max=10) public String getTrack() { return track; }
/** * @return the scientificName */ @NotNull @Length(min = 1, max = AbstractCaArrayObject.DEFAULT_STRING_COLUMN_SIZE) public String getScientificName() { return scientificName; }
/** * @return the value */ @Length(max = DEFAULT_STRING_COLUMN_SIZE) public String getValue() { return value; }
/** * @return the description */ @Length(max = LARGE_TEXT_FIELD_LENGTH) public String getDescription() { return this.description; }
/** * Gets the description. * * @return the description */ @Length(max = LARGE_TEXT_FIELD_LENGTH) @AttributePolicy(allow = SecurityPolicy.BROWSE_POLICY_NAME) public String getDescription() { return this.description; }
/** * Get the description of the experiment design. * @return the designDescription */ @Column(name = "experiment_design_description") @Length(min = 1, max = LARGE_TEXT_FIELD_LENGTH) public String getDesignDescription() { return this.designDescription; }
/** * @return the qualityControlDescription */ @Length(max = LARGE_TEXT_FIELD_LENGTH) public String getQualityControlDescription() { return this.qualityControlDescription; }
/** * @return the replicateDescription */ @Length(max = LARGE_TEXT_FIELD_LENGTH) public String getReplicateDescription() { return this.replicateDescription; }
/** * @return the fullName */ @Length(max = LARGE_TEXT_FIELD_LENGTH) public String getFullName() { return fullName; }
/** * Gets the name. * * @return the name */ @NotNull @Length(min = 1, max = DEFAULT_STRING_COLUMN_SIZE) public String getName() { return this.name; }
/** * Gets the name. * * @return the name */ @Length(min = 1, max = DEFAULT_STRING_COLUMN_SIZE) @NotNull public String getName() { return this.name; }
/** * Gets the value. * * @return the value */ @NotNull @Length(min = 1, max = DEFAULT_STRING_COLUMN_SIZE) public String getValue() { return this.value; }
/** * @return the middleInitial */ @Column(length = MIDDLE_INITIAL_FIELD_LENGTH) @Length(max = 1) public String getMiddleInitial() { return middleInitial; }
/** * @return the address2 */ @Column(length = ADDRESS2_FIELD_LENGTH) @Length(max = ADDRESS2_FIELD_LENGTH) public String getAddress2() { return address2; }
/** * @return the province */ @Column(length = PROVINCE_FIELD_LENGTH) @Length(max = PROVINCE_FIELD_LENGTH) public String getProvince() { return province; }
/** * Gets the email. * * @return the email */ @Length(max = DEFAULT_STRING_COLUMN_SIZE) @Email public String getEmail() { return this.email; }
/** * @return the externalId */ @Length(max = DEFAULT_STRING_COLUMN_SIZE) @Index(name = "idx_name") public String getExternalId() { return this.externalId; }
/** * @return the description */ @Length(max = DEFAULT_STRING_COLUMN_SIZE) public String getDescription() { return this.description; }
@NotNull(message="Credit card name is required") @Length(min=3, max=70, message="Credit card name is required") public String getCreditCardName() { return creditCardName; }
@NotNull @Length(max=100) public String getName() { return name; }
@NotNull @Length(min=5, max=15) public String getPassword() { return password; }
@Length(max=50) @NotNull public String getName() { return name; }