This file is indexed.

/usr/share/doc/libjboss-modules-java/api/org/jboss/modules/Module.html is in libjboss-modules-java-doc 1.4.4-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_85) on Sat Oct 24 00:20:31 UTC 2015 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Module (JBoss Modules 1.4.4.Final API)</title>
<meta name="date" content="2015-10-24">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
    if (location.href.indexOf('is-external=true') == -1) {
        parent.document.title="Module (JBoss Modules 1.4.4.Final API)";
    }
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!--   -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Module.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../org/jboss/modules/Main.html" title="class in org.jboss.modules"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../org/jboss/modules/ModuleClassLoader.html" title="class in org.jboss.modules"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?org/jboss/modules/Module.html" target="_top">Frames</a></li>
<li><a href="Module.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_top");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!--   -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">org.jboss.modules</div>
<h2 title="Class Module" class="title">Class Module</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li>org.jboss.modules.Module</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public final class <span class="strong">Module</span>
extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></pre>
<div class="block">A module is a unit of classes and other resources, along with the specification of what is imported and exported
 by this module from and to other modules.  Modules are created by <a href="../../../org/jboss/modules/ModuleLoader.html" title="class in org.jboss.modules"><code>ModuleLoader</code></a>s which build modules from
 various configuration information and resource roots.</div>
<dl><dt><span class="strong">Author:</span></dt>
  <dd><a href="mailto:david.lloyd@redhat.com">David M. Lloyd</a>, <a href="mailto:jbailey@redhat.com">John Bailey</a>, <a href="mailto:flavia.rainone@jboss.com">Flavia Rainone</a>, Jason T. Greene, thomas.diesler@jboss.com</dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!--   -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../org/jboss/modules/Module.html" title="class in org.jboss.modules">Module</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#forClass(java.lang.Class)">forClass</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;?&gt;&nbsp;clazz)</code>
<div class="block">Get the module for a loaded class, or <code>null</code> if the class did not come from any module.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../org/jboss/modules/Module.html" title="class in org.jboss.modules">Module</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#forClassLoader(java.lang.ClassLoader,%20boolean)">forClassLoader</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/ClassLoader.html?is-external=true" title="class or interface in java.lang">ClassLoader</a>&nbsp;cl,
              boolean&nbsp;search)</code>
<div class="block">Get the module for a class loader, or <code>null</code> if the class loader is not associated with any module.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../org/jboss/modules/ModuleLoader.html" title="class in org.jboss.modules">ModuleLoader</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#getBootModuleLoader()">getBootModuleLoader</a></strong>()</code>
<div class="block">Gets the boot module loader.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../org/jboss/modules/Module.html" title="class in org.jboss.modules">Module</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#getCallerModule()">getCallerModule</a></strong>()</code>
<div class="block">Get the caller's module.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../org/jboss/modules/ModuleLoader.html" title="class in org.jboss.modules">ModuleLoader</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#getCallerModuleLoader()">getCallerModuleLoader</a></strong>()</code>
<div class="block">Gets the current module loader.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../org/jboss/modules/ModuleClassLoader.html" title="class in org.jboss.modules">ModuleClassLoader</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#getClassLoader()">getClassLoader</a></strong>()</code>
<div class="block">Get the class loader for a module.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../org/jboss/modules/ModuleLoader.html" title="class in org.jboss.modules">ModuleLoader</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#getContextModuleLoader()">getContextModuleLoader</a></strong>()</code>
<div class="block">Get the current thread's context module loader.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../org/jboss/modules/DependencySpec.html" title="class in org.jboss.modules">DependencySpec</a>[]</code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#getDependencies()">getDependencies</a></strong>()</code>
<div class="block">Get the current dependencies of this module.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#getExportedPaths()">getExportedPaths</a></strong>()</code>
<div class="block">Get all the paths exported by this module.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/net/URL.html?is-external=true" title="class or interface in java.net">URL</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#getExportedResource(java.lang.String)">getExportedResource</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code>
<div class="block">Get an exported resource URL.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../org/jboss/modules/Resource.html" title="interface in org.jboss.modules">Resource</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#getExportedResource(java.lang.String,%20java.lang.String)">getExportedResource</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;rootPath,
                   <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;resourcePath)</code>
<div class="block">Get an exported resource from a specific root in this module.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/util/Enumeration.html?is-external=true" title="class or interface in java.util">Enumeration</a>&lt;<a href="http://docs.oracle.com/javase/7/docs/api/java/net/URL.html?is-external=true" title="class or interface in java.net">URL</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#getExportedResources(java.lang.String)">getExportedResources</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code>
<div class="block">Get all exported resource URLs for a resource name.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../org/jboss/modules/ModuleIdentifier.html" title="class in org.jboss.modules">ModuleIdentifier</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#getIdentifier()">getIdentifier</a></strong>()</code>
<div class="block">Get this module's identifier.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#getImportedPaths()">getImportedPaths</a></strong>()</code>
<div class="block">Get the (unmodifiable) set of paths which are imported into this module class loader, including local paths.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../org/jboss/modules/Module.html" title="class in org.jboss.modules">Module</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#getModule(org.jboss.modules.ModuleIdentifier)">getModule</a></strong>(<a href="../../../org/jboss/modules/ModuleIdentifier.html" title="class in org.jboss.modules">ModuleIdentifier</a>&nbsp;identifier)</code>
<div class="block">Get the module with the given identifier from the module loader used by this module.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../org/jboss/modules/Module.html" title="class in org.jboss.modules">Module</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#getModuleFromCallerModuleLoader(org.jboss.modules.ModuleIdentifier)">getModuleFromCallerModuleLoader</a></strong>(<a href="../../../org/jboss/modules/ModuleIdentifier.html" title="class in org.jboss.modules">ModuleIdentifier</a>&nbsp;identifier)</code>
<div class="block">Get a module from the current module loader.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../org/jboss/modules/ModuleLoader.html" title="class in org.jboss.modules">ModuleLoader</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#getModuleLoader()">getModuleLoader</a></strong>()</code>
<div class="block">Get the module loader which created this module.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../org/jboss/modules/log/ModuleLogger.html" title="interface in org.jboss.modules.log">ModuleLogger</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#getModuleLogger()">getModuleLogger</a></strong>()</code>
<div class="block">Get the logger used by the module system.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#getPlatformIdentifier()">getPlatformIdentifier</a></strong>()</code>
<div class="block">Get the platform identifier.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../org/jboss/modules/_private/ModulesPrivateAccess.html" title="interface in org.jboss.modules._private">ModulesPrivateAccess</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#getPrivateAccess()">getPrivateAccess</a></strong>()</code>
<div class="block">Private access for module internal code.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#getProperty(java.lang.String)">getProperty</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code>
<div class="block">Get the property with the given name, or <code>null</code> if none was defined.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#getProperty(java.lang.String,%20java.lang.String)">getProperty</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name,
           <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;defaultVal)</code>
<div class="block">Get the property with the given name, or a default value if none was defined.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#getPropertyNames()">getPropertyNames</a></strong>()</code>
<div class="block">Get a copy of the list of property names.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static long</code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#getStartTime()">getStartTime</a></strong>()</code>
<div class="block">Return the start time in millis when Module.class was loaded.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util">Iterator</a>&lt;<a href="../../../org/jboss/modules/Resource.html" title="interface in org.jboss.modules">Resource</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#globResources(java.lang.String)">globResources</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;glob)</code>
<div class="block">Enumerate all imported resources in this module which match the given glob expression.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util">Iterator</a>&lt;<a href="../../../org/jboss/modules/Resource.html" title="interface in org.jboss.modules">Resource</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#iterateResources(org.jboss.modules.filter.PathFilter)">iterateResources</a></strong>(<a href="../../../org/jboss/modules/filter/PathFilter.html" title="interface in org.jboss.modules.filter">PathFilter</a>&nbsp;filter)</code>
<div class="block">Enumerate all the imported resources in this module, subject to a path filter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;?&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#loadClassFromBootModuleLoader(org.jboss.modules.ModuleIdentifier,%20java.lang.String)">loadClassFromBootModuleLoader</a></strong>(<a href="../../../org/jboss/modules/ModuleIdentifier.html" title="class in org.jboss.modules">ModuleIdentifier</a>&nbsp;moduleIdentifier,
                             <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;className)</code>
<div class="block">Load a class from a module in the system module loader.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;?&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#loadClassFromCallerModuleLoader(org.jboss.modules.ModuleIdentifier,%20java.lang.String)">loadClassFromCallerModuleLoader</a></strong>(<a href="../../../org/jboss/modules/ModuleIdentifier.html" title="class in org.jboss.modules">ModuleIdentifier</a>&nbsp;moduleIdentifier,
                               <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;className)</code>
<div class="block">Load a class from a module in the caller's module loader.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>&lt;S&gt;&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/util/ServiceLoader.html?is-external=true" title="class or interface in java.util">ServiceLoader</a>&lt;S&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#loadService(java.lang.Class)">loadService</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;S&gt;&nbsp;serviceType)</code>
<div class="block">Load a service loader from this module.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static &lt;S&gt;&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/util/ServiceLoader.html?is-external=true" title="class or interface in java.util">ServiceLoader</a>&lt;S&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#loadServiceFromCallerModuleLoader(org.jboss.modules.ModuleIdentifier,%20java.lang.Class)">loadServiceFromCallerModuleLoader</a></strong>(<a href="../../../org/jboss/modules/ModuleIdentifier.html" title="class in org.jboss.modules">ModuleIdentifier</a>&nbsp;identifier,
                                 <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;S&gt;&nbsp;serviceType)</code>
<div class="block">Load a service loader from a module in the caller's module loader.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#registerContentHandlerFactoryModule(org.jboss.modules.Module)">registerContentHandlerFactoryModule</a></strong>(<a href="../../../org/jboss/modules/Module.html" title="class in org.jboss.modules">Module</a>&nbsp;module)</code>
<div class="block">Register an additional module which contains content handlers.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#registerURLStreamHandlerFactoryModule(org.jboss.modules.Module)">registerURLStreamHandlerFactoryModule</a></strong>(<a href="../../../org/jboss/modules/Module.html" title="class in org.jboss.modules">Module</a>&nbsp;module)</code>
<div class="block">Register an additional module which contains URL handlers.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#run(java.lang.String[])">run</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]&nbsp;args)</code>
<div class="block">Run a module's main class, if any.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#setModuleLogger(org.jboss.modules.log.ModuleLogger)">setModuleLogger</a></strong>(<a href="../../../org/jboss/modules/log/ModuleLogger.html" title="interface in org.jboss.modules.log">ModuleLogger</a>&nbsp;logger)</code>
<div class="block">Change the logger used by the module system.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jboss/modules/Module.html#toString()">toString</a></strong>()</code>
<div class="block">Get the string representation of this module.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!--   -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait(long,%20int)" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!--   -->
</a>
<h3>Method Detail</h3>
<a name="getPrivateAccess()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getPrivateAccess</h4>
<pre>public static&nbsp;<a href="../../../org/jboss/modules/_private/ModulesPrivateAccess.html" title="interface in org.jboss.modules._private">ModulesPrivateAccess</a>&nbsp;getPrivateAccess()</pre>
<div class="block">Private access for module internal code.  Throws <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/SecurityException.html?is-external=true" title="class or interface in java.lang"><code>SecurityException</code></a> for user code.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/SecurityException.html?is-external=true" title="class or interface in java.lang">SecurityException</a></code> - always</dd></dl>
</li>
</ul>
<a name="getDependencies()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDependencies</h4>
<pre>public&nbsp;<a href="../../../org/jboss/modules/DependencySpec.html" title="class in org.jboss.modules">DependencySpec</a>[]&nbsp;getDependencies()
                                 throws <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/SecurityException.html?is-external=true" title="class or interface in java.lang">SecurityException</a></pre>
<div class="block">Get the current dependencies of this module.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the current dependencies of this module</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/SecurityException.html?is-external=true" title="class or interface in java.lang">SecurityException</a></code> - if a security manager is enabled and the caller does not have the <code>getDependencies</code>
 <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/RuntimePermission.html?is-external=true" title="class or interface in java.lang"><code>RuntimePermission</code></a></dd></dl>
</li>
</ul>
<a name="getExportedResource(java.lang.String, java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getExportedResource</h4>
<pre>public&nbsp;<a href="../../../org/jboss/modules/Resource.html" title="interface in org.jboss.modules">Resource</a>&nbsp;getExportedResource(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;rootPath,
                           <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;resourcePath)</pre>
<div class="block">Get an exported resource from a specific root in this module.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>rootPath</code> - the module root to search</dd><dd><code>resourcePath</code> - the path of the resource</dd>
<dt><span class="strong">Returns:</span></dt><dd>the resource</dd></dl>
</li>
</ul>
<a name="run(java.lang.String[])">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>run</h4>
<pre>public&nbsp;void&nbsp;run(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]&nbsp;args)
         throws <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/NoSuchMethodException.html?is-external=true" title="class or interface in java.lang">NoSuchMethodException</a>,
                <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/InvocationTargetException.html?is-external=true" title="class or interface in java.lang.reflect">InvocationTargetException</a>,
                <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/ClassNotFoundException.html?is-external=true" title="class or interface in java.lang">ClassNotFoundException</a></pre>
<div class="block">Run a module's main class, if any.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>args</code> - the arguments to pass</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/NoSuchMethodException.html?is-external=true" title="class or interface in java.lang">NoSuchMethodException</a></code> - if there is no main method</dd>
<dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/InvocationTargetException.html?is-external=true" title="class or interface in java.lang.reflect">InvocationTargetException</a></code> - if the main method failed</dd>
<dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/ClassNotFoundException.html?is-external=true" title="class or interface in java.lang">ClassNotFoundException</a></code> - if the main class is not found</dd></dl>
</li>
</ul>
<a name="getIdentifier()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getIdentifier</h4>
<pre>public&nbsp;<a href="../../../org/jboss/modules/ModuleIdentifier.html" title="class in org.jboss.modules">ModuleIdentifier</a>&nbsp;getIdentifier()</pre>
<div class="block">Get this module's identifier.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the identifier</dd></dl>
</li>
</ul>
<a name="getModuleLoader()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getModuleLoader</h4>
<pre>public&nbsp;<a href="../../../org/jboss/modules/ModuleLoader.html" title="class in org.jboss.modules">ModuleLoader</a>&nbsp;getModuleLoader()</pre>
<div class="block">Get the module loader which created this module.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the module loader of this module</dd></dl>
</li>
</ul>
<a name="loadService(java.lang.Class)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>loadService</h4>
<pre>public&nbsp;&lt;S&gt;&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/util/ServiceLoader.html?is-external=true" title="class or interface in java.util">ServiceLoader</a>&lt;S&gt;&nbsp;loadService(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;S&gt;&nbsp;serviceType)</pre>
<div class="block">Load a service loader from this module.</div>
<dl><dt><span class="strong">Type Parameters:</span></dt><dd><code>S</code> - the service type</dd><dt><span class="strong">Parameters:</span></dt><dd><code>serviceType</code> - the service type class</dd>
<dt><span class="strong">Returns:</span></dt><dd>the service loader</dd></dl>
</li>
</ul>
<a name="loadServiceFromCallerModuleLoader(org.jboss.modules.ModuleIdentifier, java.lang.Class)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>loadServiceFromCallerModuleLoader</h4>
<pre>public static&nbsp;&lt;S&gt;&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/util/ServiceLoader.html?is-external=true" title="class or interface in java.util">ServiceLoader</a>&lt;S&gt;&nbsp;loadServiceFromCallerModuleLoader(<a href="../../../org/jboss/modules/ModuleIdentifier.html" title="class in org.jboss.modules">ModuleIdentifier</a>&nbsp;identifier,
                                                     <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;S&gt;&nbsp;serviceType)
                                                          throws <a href="../../../org/jboss/modules/ModuleLoadException.html" title="class in org.jboss.modules">ModuleLoadException</a></pre>
<div class="block">Load a service loader from a module in the caller's module loader. The caller's
 module loader refers to the loader of the module of the class that calls this method.
 Note that <a href="../../../org/jboss/modules/Module.html#loadService(java.lang.Class)"><code>loadService(Class)</code></a> is more efficient since it does not need to crawl
 the stack.</div>
<dl><dt><span class="strong">Type Parameters:</span></dt><dd><code>S</code> - the the service type</dd><dt><span class="strong">Parameters:</span></dt><dd><code>identifier</code> - the module identifier containing the service loader</dd><dd><code>serviceType</code> - the service type class</dd>
<dt><span class="strong">Returns:</span></dt><dd>the loaded service from the caller's module</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../org/jboss/modules/ModuleLoadException.html" title="class in org.jboss.modules">ModuleLoadException</a></code> - if the named module failed to load</dd></dl>
</li>
</ul>
<a name="getClassLoader()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getClassLoader</h4>
<pre>public&nbsp;<a href="../../../org/jboss/modules/ModuleClassLoader.html" title="class in org.jboss.modules">ModuleClassLoader</a>&nbsp;getClassLoader()</pre>
<div class="block">Get the class loader for a module.  The class loader can be used to access non-exported classes and
 resources of the module.
 <p>
 If a security manager is present, then this method invokes the security manager's <code>checkPermission</code> method
 with a <code>RuntimePermission("getClassLoader")</code> permission to verify access to the class loader. If
 access is not granted, a <code>SecurityException</code> will be thrown.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the module class loader</dd></dl>
</li>
</ul>
<a name="getExportedPaths()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getExportedPaths</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;getExportedPaths()</pre>
<div class="block">Get all the paths exported by this module.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the paths that are exported by this module</dd></dl>
</li>
</ul>
<a name="forClass(java.lang.Class)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>forClass</h4>
<pre>public static&nbsp;<a href="../../../org/jboss/modules/Module.html" title="class in org.jboss.modules">Module</a>&nbsp;forClass(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;?&gt;&nbsp;clazz)</pre>
<div class="block">Get the module for a loaded class, or <code>null</code> if the class did not come from any module.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>clazz</code> - the class</dd>
<dt><span class="strong">Returns:</span></dt><dd>the module it came from</dd></dl>
</li>
</ul>
<a name="forClassLoader(java.lang.ClassLoader, boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>forClassLoader</h4>
<pre>public static&nbsp;<a href="../../../org/jboss/modules/Module.html" title="class in org.jboss.modules">Module</a>&nbsp;forClassLoader(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/ClassLoader.html?is-external=true" title="class or interface in java.lang">ClassLoader</a>&nbsp;cl,
                    boolean&nbsp;search)</pre>
<div class="block">Get the module for a class loader, or <code>null</code> if the class loader is not associated with any module.  If
 the class loader is unknown, it is possible to check the parent class loader up the chain, and so on until a module is found.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>cl</code> - the class loader</dd><dd><code>search</code> - <code>true</code> to search up the delegation chain</dd>
<dt><span class="strong">Returns:</span></dt><dd>the associated module</dd></dl>
</li>
</ul>
<a name="getBootModuleLoader()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getBootModuleLoader</h4>
<pre>public static&nbsp;<a href="../../../org/jboss/modules/ModuleLoader.html" title="class in org.jboss.modules">ModuleLoader</a>&nbsp;getBootModuleLoader()</pre>
<div class="block">Gets the boot module loader. The boot module loader is the
 initial loader that is established by the module framework. It typically
 is based off of the environmental module path unless it is overridden by
 specifying a different class name for the <code>boot.module.loader</code> system
 property.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the boot module loader</dd></dl>
</li>
</ul>
<a name="getCallerModuleLoader()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getCallerModuleLoader</h4>
<pre>public static&nbsp;<a href="../../../org/jboss/modules/ModuleLoader.html" title="class in org.jboss.modules">ModuleLoader</a>&nbsp;getCallerModuleLoader()</pre>
<div class="block">Gets the current module loader. The current module loader is the
 loader of the module from the calling class. Note that this method
 must crawl the stack to determine this, so other mechanisms are more
 efficient.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the current module loader, or <code>null</code> if this method is called outside of a module</dd></dl>
</li>
</ul>
<a name="getContextModuleLoader()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getContextModuleLoader</h4>
<pre>public static&nbsp;<a href="../../../org/jboss/modules/ModuleLoader.html" title="class in org.jboss.modules">ModuleLoader</a>&nbsp;getContextModuleLoader()</pre>
<div class="block">Get the current thread's context module loader.  This loader is the one which defined the module
 whose class loader is, or is a parent of, the thread's current context class loader.  If there is none,
 then <code>null</code> is returned.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the module loader, or <code>null</code> if none is set</dd></dl>
</li>
</ul>
<a name="getModuleFromCallerModuleLoader(org.jboss.modules.ModuleIdentifier)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getModuleFromCallerModuleLoader</h4>
<pre>public static&nbsp;<a href="../../../org/jboss/modules/Module.html" title="class in org.jboss.modules">Module</a>&nbsp;getModuleFromCallerModuleLoader(<a href="../../../org/jboss/modules/ModuleIdentifier.html" title="class in org.jboss.modules">ModuleIdentifier</a>&nbsp;identifier)
                                              throws <a href="../../../org/jboss/modules/ModuleLoadException.html" title="class in org.jboss.modules">ModuleLoadException</a></pre>
<div class="block">Get a module from the current module loader. Note that this must crawl the
 stack to determine this, so other mechanisms are more efficient.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>identifier</code> - the module identifier</dd>
<dt><span class="strong">Returns:</span></dt><dd>the module</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../org/jboss/modules/ModuleLoadException.html" title="class in org.jboss.modules">ModuleLoadException</a></code> - if the module could not be loaded</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/jboss/modules/Module.html#getCallerModuleLoader()"><code>getCallerModuleLoader()</code></a></dd></dl>
</li>
</ul>
<a name="getCallerModule()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getCallerModule</h4>
<pre>public static&nbsp;<a href="../../../org/jboss/modules/Module.html" title="class in org.jboss.modules">Module</a>&nbsp;getCallerModule()</pre>
<div class="block">Get the caller's module. The caller's module is the module containing the method that calls this
 method. Note that this method crawls the stack so other ways of obtaining the
 module are more efficient.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the current module</dd></dl>
</li>
</ul>
<a name="getModule(org.jboss.modules.ModuleIdentifier)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getModule</h4>
<pre>public&nbsp;<a href="../../../org/jboss/modules/Module.html" title="class in org.jboss.modules">Module</a>&nbsp;getModule(<a href="../../../org/jboss/modules/ModuleIdentifier.html" title="class in org.jboss.modules">ModuleIdentifier</a>&nbsp;identifier)
                 throws <a href="../../../org/jboss/modules/ModuleLoadException.html" title="class in org.jboss.modules">ModuleLoadException</a></pre>
<div class="block">Get the module with the given identifier from the module loader used by this module.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>identifier</code> - the module identifier</dd>
<dt><span class="strong">Returns:</span></dt><dd>the module</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../org/jboss/modules/ModuleLoadException.html" title="class in org.jboss.modules">ModuleLoadException</a></code> - if an error occurs</dd></dl>
</li>
</ul>
<a name="loadClassFromBootModuleLoader(org.jboss.modules.ModuleIdentifier, java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>loadClassFromBootModuleLoader</h4>
<pre>public static&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;?&gt;&nbsp;loadClassFromBootModuleLoader(<a href="../../../org/jboss/modules/ModuleIdentifier.html" title="class in org.jboss.modules">ModuleIdentifier</a>&nbsp;moduleIdentifier,
                                     <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;className)
                                              throws <a href="../../../org/jboss/modules/ModuleLoadException.html" title="class in org.jboss.modules">ModuleLoadException</a>,
                                                     <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/ClassNotFoundException.html?is-external=true" title="class or interface in java.lang">ClassNotFoundException</a></pre>
<div class="block">Load a class from a module in the system module loader.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>moduleIdentifier</code> - the identifier of the module from which the class
        should be loaded</dd><dd><code>className</code> - the class name to load</dd>
<dt><span class="strong">Returns:</span></dt><dd>the class</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../org/jboss/modules/ModuleLoadException.html" title="class in org.jboss.modules">ModuleLoadException</a></code> - if the module could not be loaded</dd>
<dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/ClassNotFoundException.html?is-external=true" title="class or interface in java.lang">ClassNotFoundException</a></code> - if the class could not be loaded</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/jboss/modules/Module.html#getBootModuleLoader()"><code>getBootModuleLoader()</code></a></dd></dl>
</li>
</ul>
<a name="loadClassFromCallerModuleLoader(org.jboss.modules.ModuleIdentifier, java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>loadClassFromCallerModuleLoader</h4>
<pre>public static&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;?&gt;&nbsp;loadClassFromCallerModuleLoader(<a href="../../../org/jboss/modules/ModuleIdentifier.html" title="class in org.jboss.modules">ModuleIdentifier</a>&nbsp;moduleIdentifier,
                                       <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;className)
                                                throws <a href="../../../org/jboss/modules/ModuleLoadException.html" title="class in org.jboss.modules">ModuleLoadException</a>,
                                                       <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/ClassNotFoundException.html?is-external=true" title="class or interface in java.lang">ClassNotFoundException</a></pre>
<div class="block">Load a class from a module in the caller's module loader.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>moduleIdentifier</code> - the identifier of the module from which the class
        should be loaded</dd><dd><code>className</code> - the class name to load</dd>
<dt><span class="strong">Returns:</span></dt><dd>the class</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../org/jboss/modules/ModuleLoadException.html" title="class in org.jboss.modules">ModuleLoadException</a></code> - if the module could not be loaded</dd>
<dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/ClassNotFoundException.html?is-external=true" title="class or interface in java.lang">ClassNotFoundException</a></code> - if the class could not be loaded</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/jboss/modules/Module.html#getCallerModuleLoader()"><code>getCallerModuleLoader()</code></a></dd></dl>
</li>
</ul>
<a name="getExportedResource(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getExportedResource</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/net/URL.html?is-external=true" title="class or interface in java.net">URL</a>&nbsp;getExportedResource(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</pre>
<div class="block">Get an exported resource URL.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - the resource name</dd>
<dt><span class="strong">Returns:</span></dt><dd>the resource, or <code>null</code> if it was not found</dd></dl>
</li>
</ul>
<a name="getExportedResources(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getExportedResources</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/util/Enumeration.html?is-external=true" title="class or interface in java.util">Enumeration</a>&lt;<a href="http://docs.oracle.com/javase/7/docs/api/java/net/URL.html?is-external=true" title="class or interface in java.net">URL</a>&gt;&nbsp;getExportedResources(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</pre>
<div class="block">Get all exported resource URLs for a resource name.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - the resource name</dd>
<dt><span class="strong">Returns:</span></dt><dd>the resource URLs</dd></dl>
</li>
</ul>
<a name="iterateResources(org.jboss.modules.filter.PathFilter)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>iterateResources</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util">Iterator</a>&lt;<a href="../../../org/jboss/modules/Resource.html" title="interface in org.jboss.modules">Resource</a>&gt;&nbsp;iterateResources(<a href="../../../org/jboss/modules/filter/PathFilter.html" title="interface in org.jboss.modules.filter">PathFilter</a>&nbsp;filter)
                                    throws <a href="../../../org/jboss/modules/ModuleLoadException.html" title="class in org.jboss.modules">ModuleLoadException</a></pre>
<div class="block">Enumerate all the imported resources in this module, subject to a path filter.  The filter applies to
 the containing path of each resource.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>filter</code> - the filter to apply to the search</dd>
<dt><span class="strong">Returns:</span></dt><dd>the resource iterator (possibly empty)</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../org/jboss/modules/ModuleLoadException.html" title="class in org.jboss.modules">ModuleLoadException</a></code> - if linking a dependency module fails for some reason</dd></dl>
</li>
</ul>
<a name="globResources(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>globResources</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util">Iterator</a>&lt;<a href="../../../org/jboss/modules/Resource.html" title="interface in org.jboss.modules">Resource</a>&gt;&nbsp;globResources(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;glob)
                                 throws <a href="../../../org/jboss/modules/ModuleLoadException.html" title="class in org.jboss.modules">ModuleLoadException</a></pre>
<div class="block">Enumerate all imported resources in this module which match the given glob expression.  The glob applies to
 the whole resource name.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>glob</code> - the glob to apply</dd>
<dt><span class="strong">Returns:</span></dt><dd>the iterator</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../org/jboss/modules/ModuleLoadException.html" title="class in org.jboss.modules">ModuleLoadException</a></code> - if linking a dependency module fails for some reason</dd></dl>
</li>
</ul>
<a name="getImportedPaths()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getImportedPaths</h4>
<pre>public final&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;getImportedPaths()
                                   throws <a href="../../../org/jboss/modules/ModuleLoadException.html" title="class in org.jboss.modules">ModuleLoadException</a></pre>
<div class="block">Get the (unmodifiable) set of paths which are imported into this module class loader, including local paths.  The
 set will include all paths defined by the module's resource loaders, minus any paths excluded by filters.  The
 set will generally always contain an empty entry ("").  The set is unordered and unsorted, and is iterable in
 O(n) time and accessible in O(1) time.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the set of paths</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../org/jboss/modules/ModuleLoadException.html" title="class in org.jboss.modules">ModuleLoadException</a></code> - if the module was previously unlinked, and there was an exception while linking</dd></dl>
</li>
</ul>
<a name="getProperty(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getProperty</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getProperty(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</pre>
<div class="block">Get the property with the given name, or <code>null</code> if none was defined.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - the property name</dd>
<dt><span class="strong">Returns:</span></dt><dd>the property value</dd></dl>
</li>
</ul>
<a name="getProperty(java.lang.String, java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getProperty</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getProperty(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name,
                 <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;defaultVal)</pre>
<div class="block">Get the property with the given name, or a default value if none was defined.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - the property name</dd><dd><code>defaultVal</code> - the default value</dd>
<dt><span class="strong">Returns:</span></dt><dd>the property value</dd></dl>
</li>
</ul>
<a name="getPropertyNames()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getPropertyNames</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;getPropertyNames()</pre>
<div class="block">Get a copy of the list of property names.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the property names list</dd></dl>
</li>
</ul>
<a name="toString()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toString</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;toString()</pre>
<div class="block">Get the string representation of this module.</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang">toString</a></code>&nbsp;in class&nbsp;<code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>the string representation</dd></dl>
</li>
</ul>
<a name="getModuleLogger()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getModuleLogger</h4>
<pre>public static&nbsp;<a href="../../../org/jboss/modules/log/ModuleLogger.html" title="interface in org.jboss.modules.log">ModuleLogger</a>&nbsp;getModuleLogger()</pre>
<div class="block">Get the logger used by the module system.
 <p>
 If a security manager is present, then this method invokes the security manager's <code>checkPermission</code> method
 with a <code>RuntimePermission("accessModuleLogger")</code> permission to verify access to the module logger. If
 access is not granted, a <code>SecurityException</code> will be thrown.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the module logger</dd></dl>
</li>
</ul>
<a name="setModuleLogger(org.jboss.modules.log.ModuleLogger)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setModuleLogger</h4>
<pre>public static&nbsp;void&nbsp;setModuleLogger(<a href="../../../org/jboss/modules/log/ModuleLogger.html" title="interface in org.jboss.modules.log">ModuleLogger</a>&nbsp;logger)</pre>
<div class="block">Change the logger used by the module system.
 <p>
 If a security manager is present, then this method invokes the security manager's <code>checkPermission</code> method
 with a <code>RuntimePermission("accessModuleLogger")</code> permission to verify access to the module logger. If
 access is not granted, a <code>SecurityException</code> will be thrown.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>logger</code> - the new logger, must not be <code>null</code></dd></dl>
</li>
</ul>
<a name="getStartTime()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getStartTime</h4>
<pre>public static&nbsp;long&nbsp;getStartTime()</pre>
<div class="block">Return the start time in millis when Module.class was loaded.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>start time of Module.class load</dd></dl>
</li>
</ul>
<a name="registerContentHandlerFactoryModule(org.jboss.modules.Module)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>registerContentHandlerFactoryModule</h4>
<pre>public static&nbsp;void&nbsp;registerContentHandlerFactoryModule(<a href="../../../org/jboss/modules/Module.html" title="class in org.jboss.modules">Module</a>&nbsp;module)</pre>
<div class="block">Register an additional module which contains content handlers.
 <p>
 If a security manager is present, then this method invokes the security manager's <code>checkPermission</code> method
 with a <code>RuntimePermission("addContentHandlerFactory")</code> permission to verify access. If
 access is not granted, a <code>SecurityException</code> will be thrown.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>module</code> - the module to add</dd></dl>
</li>
</ul>
<a name="registerURLStreamHandlerFactoryModule(org.jboss.modules.Module)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>registerURLStreamHandlerFactoryModule</h4>
<pre>public static&nbsp;void&nbsp;registerURLStreamHandlerFactoryModule(<a href="../../../org/jboss/modules/Module.html" title="class in org.jboss.modules">Module</a>&nbsp;module)</pre>
<div class="block">Register an additional module which contains URL handlers.
 <p>
 If a security manager is present, then this method invokes the security manager's <code>checkPermission</code> method
 with a <code>RuntimePermission("addURLStreamHandlerFactory")</code> permission to verify access. If
 access is not granted, a <code>SecurityException</code> will be thrown.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>module</code> - the module to add</dd></dl>
</li>
</ul>
<a name="getPlatformIdentifier()">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getPlatformIdentifier</h4>
<pre>public static&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getPlatformIdentifier()</pre>
<div class="block">Get the platform identifier.  This is the string that uniquely identifies the hardware and OS combination for
 the current running system.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the platform identifier</dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!--   -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Module.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../org/jboss/modules/Main.html" title="class in org.jboss.modules"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../org/jboss/modules/ModuleClassLoader.html" title="class in org.jboss.modules"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?org/jboss/modules/Module.html" target="_top">Frames</a></li>
<li><a href="Module.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_bottom");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!--   -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2015. All rights reserved.</small></p>
</body>
</html>