/* * Copyright (c) 2008-2017, Hazelcast, Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.hazelcast.nio.serialization; public class TestSerializationConstants { public static final int PORTABLE_FACTORY_ID = 1; public static final int INNER_PORTABLE = 1; public static final int INVALID_RAW_DATA_PORTABLE = 2; public static final int INVALID_RAW_DATA_PORTABLE_2 = 3; public static final int RAW_DATA_PORTABLE = 4; public static final int MAIN_PORTABLE = 5; public static final int NAMED_PORTABLE = 6; public static final int OBJECT_CARRYING_PORTABLE = 7; public static final int ALL_FIELD_OBJECT_PORTABLE = 8; public static final int MORPHING_PORTABLE = 9; public static final int DATA_SERIALIZABLE_FACTORY_ID = 1; public static final int SAMPLE_IDENTIFIED_DATA_SERIALIZABLE = 1; }