/* * Copyright 2013 Google Inc. * * 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.google.devcoin.core; /** * <p>An object implementing this interface can be added to a {@link Wallet} and provide arbitrary byte arrays that will * be serialized alongside the wallet. Extensions can be mandatory, in which case applications that don't know how to * read the given data will refuse to load the wallet at all. Extensions identify themselves with a string ID that * should use a Java-style reverse DNS identifier to avoid being mixed up with other kinds of extension. To use an * extension, add an object that implements this interface to the wallet using {@link Wallet#addExtension(WalletExtension)} * before you load it (to read existing data) and ensure it's present when the wallet is save (to write the data).</p> * * <p>Note that extensions are singletons - you cannot add two objects that provide the same ID to the same wallet.</p> */ public interface WalletExtension { /** Returns a Java package/class style name used to disambiguate this extension from others. */ public String getWalletExtensionID(); /** * If this returns true, the mandatory flag is set when the wallet is serialized and attempts to load it without * the extension being in the wallet will throw an exception. This method should not change its result during * the objects lifetime. */ public boolean isWalletExtensionMandatory(); /** Returns bytes that will be saved in the wallet. */ public byte[] serializeWalletExtension(); /** Loads the contents of this object from the wallet. */ public void deserializeWalletExtension(Wallet containingWallet, byte[] data) throws Exception; }