Home | History | Annotate | Download | only in security

Lines Matching refs:startDate

97      * {@code serialNumber}, and the validity date starting at {@code startDate}
108 * @param startDate the start of the self-signed certificate validity period
112 * {@code endDate} is before {@code startDate}.
117 Date startDate, Date endDate, int flags) {
126 } else if (startDate == null) {
127 throw new IllegalArgumentException("startDate == null");
130 } else if (endDate.before(startDate)) {
131 throw new IllegalArgumentException("endDate < startDate");
134 if (endDate.before(startDate)) {
135 throw new IllegalArgumentException("endDate < startDate");
145 mStartDate = startDate;
402 public Builder setStartDate(@NonNull Date startDate) {
403 if (startDate == null) {
404 throw new NullPointerException("startDate == null");
406 mStartDate = startDate;