]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.server/src/org/simantics/db/server/protocol/GetServerInfo2Function.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db.server / src / org / simantics / db / server / protocol / GetServerInfo2Function.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.db.server.protocol;
13
14 import java.nio.ByteOrder;
15
16 public class GetServerInfo2Function extends AbstractFunction {
17     public long firstChangeSetId = 0;
18     public String serverId = "";
19     public String protocolId = "";
20     public String databaseId = "";
21     public GetServerInfo2Function() {
22         super(MessageNumber.GetServerInfo2Request, MessageNumber.GetServerInfo2Response);
23     }
24     @Override
25     public DataBuffer serialize(ByteOrder byteOrder) {
26         buffer.clear();
27         buffer.order(byteOrder);
28         buffer.mark();
29         return buffer;
30     }
31     @Override
32     public void deserialize(int receivedNumber_, DataBuffer dataBuffer) {
33         receivedNumber = receivedNumber_;
34         if (notRightDataForUs())
35             return;
36         firstChangeSetId = dataBuffer.get(firstChangeSetId);
37         serverId = dataBuffer.get(serverId);
38         protocolId = dataBuffer.get(protocolId);
39         databaseId = dataBuffer.get(databaseId);
40         gotResponse();
41     }
42 }