ISDKDescriptor.java 849 B

1234567891011121314151617181920212223242526272829
  1. ///////////////////////////////////////////////////////////////////////////
  2. // Copyright (c) 2018 Intel Corporation. //
  3. // //
  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. // Intel Corporation - initial implementation and documentation //
  11. ///////////////////////////////////////////////////////////////////////////
  12. package com.intel.sgx.preferences;
  13. import java.io.File;
  14. public interface ISDKDescriptor {
  15. public abstract File getSdkDir();
  16. public abstract File getToolsDir();
  17. public abstract File getSignerPath();
  18. public abstract File getEdger8rPath();
  19. }