/* * Copyright (c) 2015 Jarrad Hope * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package io.syng.entity; public final class RunningMode { public final static int FULL_CLIENT = 1; public final static int LIGHT_CLIENT = 2; public final static int JSON_RPC_CLIENT = 3; }