Searched refs:getTimestamp (Results 1 - 25 of 28) sorted by relevance

12

/openjdk9/jdk/src/java.base/share/classes/java/security/
H A DTimestamp.java88 public Date getTimestamp() { method in class:Timestamp
133 return (timestamp.equals(that.getTimestamp()) &&
H A DCodeSigner.java95 public Timestamp getTimestamp() { method in class:CodeSigner
136 Timestamp thatTimestamp = that.getTimestamp();
/openjdk9/jdk/src/java.base/share/classes/sun/security/util/
H A DSignatureFileVerifier.java309 if (s.getTimestamp() == null) {
313 timestamp = s.getTimestamp();
315 if (timestamp.getTimestamp().before(
316 s.getTimestamp().getTimestamp())) {
317 timestamp = s.getTimestamp();
722 signers.add(new CodeSigner(certChain, info.getTimestamp()));
H A DDisabledAlgorithmConstraints.java610 currentDate = cp.getJARTimestamp().getTimestamp();
/openjdk9/jdk/src/java.sql/share/classes/java/sql/
H A DCallableStatement.java360 java.sql.Timestamp getTimestamp(int parameterIndex) method in interface:CallableStatement
573 java.sql.Timestamp getTimestamp(int parameterIndex, Calendar cal) method in interface:CallableStatement
1025 * @see #getTimestamp
1282 * @see #getTimestamp
1523 java.sql.Timestamp getTimestamp(String parameterName) throws SQLException; method in interface:CallableStatement
1732 java.sql.Timestamp getTimestamp(String parameterName, Calendar cal) method in interface:CallableStatement
H A DResultSet.java420 java.sql.Timestamp getTimestamp(int columnIndex) throws SQLException; method in interface:ResultSet
709 java.sql.Timestamp getTimestamp(String columnLabel) throws SQLException; method in interface:ResultSet
2723 java.sql.Timestamp getTimestamp(int columnIndex, Calendar cal) method in interface:ResultSet
2745 java.sql.Timestamp getTimestamp(String columnLabel, Calendar cal) method in interface:ResultSet
/openjdk9/jdk/test/java/sql/testng/util/
H A DStubCallableStatement.java123 public Timestamp getTimestamp(int parameterIndex) throws SQLException { method in class:StubCallableStatement
173 public Timestamp getTimestamp(int parameterIndex, Calendar cal) throws SQLException { method in class:StubCallableStatement
383 public Timestamp getTimestamp(String parameterName) throws SQLException { method in class:StubCallableStatement
433 public Timestamp getTimestamp(String parameterName, Calendar cal) throws SQLException { method in class:StubCallableStatement
/openjdk9/jdk/src/java.base/share/classes/sun/security/provider/certpath/
H A DPKIXCertPathValidator.java196 params.timestamp().getTimestamp()),
H A DPKIXExtendedParameters.java61 public Timestamp getTimestamp() { method in class:PKIXExtendedParameters
H A DPKIX.java107 timestamp = ((PKIXExtendedParameters) params).getTimestamp();
H A DAlgorithmChecker.java183 this.pkixdate = (jarTimestamp != null ? jarTimestamp.getTimestamp() :
/openjdk9/jdk/src/java.sql.rowset/share/classes/com/sun/rowset/
H A DJoinRowSetImpl.java1226 public java.sql.Timestamp getTimestamp(int columnIndex) throws SQLException { method in class:JoinRowSetImpl
1227 return crsInternal.getTimestamp(columnIndex);
1507 public java.sql.Timestamp getTimestamp(String columnName) throws SQLException { method in class:JoinRowSetImpl
1508 return crsInternal.getTimestamp(columnName);
3688 public java.sql.Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException { method in class:JoinRowSetImpl
3689 return crsInternal.getTimestamp(columnIndex, cal);
3711 public java.sql.Timestamp getTimestamp(String columnName, Calendar cal) throws SQLException { method in class:JoinRowSetImpl
3712 return crsInternal.getTimestamp(columnName, cal);
H A DJdbcRowSetImpl.java1093 public java.sql.Timestamp getTimestamp(int columnIndex) throws SQLException { method in class:JdbcRowSetImpl
1096 return rs.getTimestamp(columnIndex);
1408 public java.sql.Timestamp getTimestamp(String columnName) throws SQLException { method in class:JdbcRowSetImpl
1409 return getTimestamp(findColumn(columnName));
3450 public java.sql.Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException { method in class:JdbcRowSetImpl
3453 return rs.getTimestamp(columnIndex, cal);
3474 public java.sql.Timestamp getTimestamp(String columnName, Calendar cal) throws SQLException { method in class:JdbcRowSetImpl
3475 return getTimestamp(findColumn(columnName), cal);
6003 * @see #getTimestamp
6716 * @see #getTimestamp
[all...]
H A DCachedRowSetImpl.java2249 public java.sql.Timestamp getTimestamp(int columnIndex) throws SQLException { method in class:CachedRowSetImpl
2728 public java.sql.Timestamp getTimestamp(String columnName) throws SQLException { method in class:CachedRowSetImpl
2729 return getTimestamp(getColIdxByName(columnName));
6181 public java.sql.Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException { method in class:CachedRowSetImpl
6241 public java.sql.Timestamp getTimestamp(String columnName, Calendar cal) throws SQLException { method in class:CachedRowSetImpl
6242 return getTimestamp(getColIdxByName(columnName), cal);
9191 * @see #getTimestamp
9915 * @see #getTimestamp
/openjdk9/jdk/src/java.base/share/classes/sun/security/pkcs/
H A DSignerInfo.java328 timestamp = getTimestamp();
549 public Timestamp getTimestamp() method in class:SignerInfo
/openjdk9/jdk/src/java.sql.rowset/share/classes/com/sun/rowset/internal/
H A DSyncResolverImpl.java1372 public java.sql.Timestamp getTimestamp(int columnIndex) throws SQLException { method in class:SyncResolverImpl
1736 public java.sql.Timestamp getTimestamp(String columnName) throws SQLException { method in class:SyncResolverImpl
4059 public java.sql.Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException { method in class:SyncResolverImpl
4082 public java.sql.Timestamp getTimestamp(String columnName, Calendar cal) throws SQLException { method in class:SyncResolverImpl
H A DWebRowSetXmlWriter.java432 java.sql.Timestamp ts = caller.getTimestamp(idx);
/openjdk9/jdk/test/javax/sql/testng/util/
H A DStubBaseRowSet.java153 public Timestamp getTimestamp(int columnIndex) throws SQLException { method in class:StubBaseRowSet
233 public Timestamp getTimestamp(String columnLabel) throws SQLException { method in class:StubBaseRowSet
683 public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException { method in class:StubBaseRowSet
688 public Timestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException { method in class:StubBaseRowSet
H A DStubWebRowSetImpl.java950 public Timestamp getTimestamp(int columnIndex) throws SQLException { method in class:StubWebRowSetImpl
1030 public Timestamp getTimestamp(String columnLabel) throws SQLException { method in class:StubWebRowSetImpl
1510 public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException { method in class:StubWebRowSetImpl
1515 public Timestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException { method in class:StubWebRowSetImpl
H A DStubSyncResolver.java737 public Timestamp getTimestamp(int columnIndex) throws SQLException { method in class:StubSyncResolver
817 public Timestamp getTimestamp(String columnLabel) throws SQLException { method in class:StubSyncResolver
1297 public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException { method in class:StubSyncResolver
1302 public Timestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException { method in class:StubSyncResolver
H A DStubJoinRowSetImpl.java1034 public Timestamp getTimestamp(int columnIndex) throws SQLException { method in class:StubJoinRowSetImpl
1114 public Timestamp getTimestamp(String columnLabel) throws SQLException { method in class:StubJoinRowSetImpl
1594 public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException { method in class:StubJoinRowSetImpl
1599 public Timestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException { method in class:StubJoinRowSetImpl
H A DStubFilteredRowSetImpl.java964 public Timestamp getTimestamp(int columnIndex) throws SQLException { method in class:StubFilteredRowSetImpl
1044 public Timestamp getTimestamp(String columnLabel) throws SQLException { method in class:StubFilteredRowSetImpl
1524 public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException { method in class:StubFilteredRowSetImpl
1529 public Timestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException { method in class:StubFilteredRowSetImpl
H A DStubCachedRowSetImpl.java919 public Timestamp getTimestamp(int columnIndex) throws SQLException { method in class:StubCachedRowSetImpl
999 public Timestamp getTimestamp(String columnLabel) throws SQLException { method in class:StubCachedRowSetImpl
1479 public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException { method in class:StubCachedRowSetImpl
1484 public Timestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException { method in class:StubCachedRowSetImpl
H A DStubJdbcRowSetImpl.java743 public Timestamp getTimestamp(int columnIndex) throws SQLException { method in class:StubJdbcRowSetImpl
823 public Timestamp getTimestamp(String columnLabel) throws SQLException { method in class:StubJdbcRowSetImpl
1303 public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException { method in class:StubJdbcRowSetImpl
1308 public Timestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException { method in class:StubJdbcRowSetImpl
/openjdk9/jdk/src/jdk.jartool/share/classes/sun/security/tools/jarsigner/
H A DMain.java1221 Object[] source = { timestamp.getTimestamp() };
1606 Timestamp ts = signer.getTimestamp();
1610 timestamp = ts.getTimestamp();

Completed in 431 milliseconds

12