nsIURIWithPrincipal.idl 735 B

12345678910111213141516171819202122232425262728
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. #include "nsISupports.idl"
  5. interface nsIPrincipal;
  6. interface nsIURI;
  7. /**
  8. * nsIURIWithPrincipal is implemented by URIs which are associated with a
  9. * specific principal.
  10. */
  11. [scriptable, uuid(626a5c0c-bfd8-4531-8b47-a8451b0daa33)]
  12. interface nsIURIWithPrincipal : nsISupports
  13. {
  14. /**
  15. * The principal associated with the resource returned when loading this
  16. * uri.
  17. */
  18. readonly attribute nsIPrincipal principal;
  19. /**
  20. * The uri for the principal.
  21. */
  22. readonly attribute nsIURI principalUri;
  23. };