/////////////////////////////////////////////////////////////////////////// // Copyright (c) 2018 Intel Corporation. // // // // 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: // // Intel Corporation - initial implementation and documentation // /////////////////////////////////////////////////////////////////////////// package com.intel.sgx.preferences; import java.io.File; public interface ISDKDescriptor { public abstract File getSdkDir(); public abstract File getToolsDir(); public abstract File getSignerPath(); public abstract File getEdger8rPath(); }