use of com.opentext.ia.sdk.support.datetime.Clock in project infoarchive-sip-sdk by Enterprise-Content-Management.
the class ArchiveClients method usingAlreadyConfiguredServer.
/**
* Creates a new ArchiveClient instance without installing any artifacts in the archive using the default RestClient.
* @param serverConfiguration How to communicate with the server
* @return An ArchiveClient
*/
public static ArchiveClient usingAlreadyConfiguredServer(ServerConfiguration serverConfiguration) {
Clock clock = new DefaultClock();
RestClient restClient = createRestClient(serverConfiguration, clock);
return usingAlreadyConfiguredServer(serverConfiguration, restClient, clock);
}
Aggregations