blob: 70721d8b40aafa6c6f9e5eac62f3da388ba0c88d [file] [log] [blame]
/*
* Copyright (c) 2009-2012, 2015 Eike Stepper (Berlin, Germany) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Eike Stepper - initial API and implementation
*/
package org.eclipse.emf.cdo.internal.net4j.protocol;
import org.eclipse.emf.cdo.common.protocol.CDODataInput;
import org.eclipse.emf.cdo.common.protocol.CDOProtocolConstants;
import org.eclipse.emf.spi.cdo.CDOSessionProtocol.RepositoryTimeResult;
import java.io.IOException;
/**
* @author Eike Stepper
*/
public class RepositoryTimeRequest extends CDOTimeRequest<RepositoryTimeResult>
{
public RepositoryTimeRequest(CDOClientProtocol protocol)
{
super(protocol, CDOProtocolConstants.SIGNAL_REPOSITORY_TIME);
}
@Override
protected RepositoryTimeResult confirming(CDODataInput in) throws IOException
{
super.confirming(in);
return getRepositoryTimeResult();
}
}