-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
70 changed files
with
831 additions
and
727 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
.project | ||
.settings | ||
.classpath | ||
.cache | ||
target | ||
*.iml | ||
.idea/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
73 changes: 38 additions & 35 deletions
73
weld-spi/src/main/java/org/jboss/weld/bootstrap/spi/Filter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,39 @@ | ||
package org.jboss.weld.bootstrap.spi; | ||
|
||
import java.util.Collection; | ||
|
||
/** | ||
* <p> | ||
* {@link Filter} is a data structures representing the <exclude> elements beans.xml (Since CDI 1.1). See the XSD for | ||
* details of the semantics of <exclude>. | ||
* </p> | ||
* | ||
* @see <a href="https://github.com/jboss/cdi/blob/master/api/src/main/resources/beans_1_1.xsd">Beans 1.1</a> | ||
* | ||
* @author Pete Muir | ||
* @see Scanning | ||
*/ | ||
public interface Filter { | ||
|
||
/** | ||
* The name attribute | ||
* @return the name attribute | ||
*/ | ||
String getName(); | ||
|
||
/** | ||
* Nested <if-system-property> elements | ||
* @return nested <if-system-property> elements | ||
*/ | ||
Collection<Metadata<SystemPropertyActivation>> getSystemPropertyActivations(); | ||
|
||
/** | ||
* Nested <if-class-available> elements | ||
* @return nested <if-class-available> elements | ||
*/ | ||
Collection<Metadata<ClassAvailableActivation>> getClassAvailableActivations(); | ||
|
||
package org.jboss.weld.bootstrap.spi; | ||
|
||
import java.util.Collection; | ||
|
||
/** | ||
* <p> | ||
* {@link Filter} is a data structures representing the <exclude> elements beans.xml (Since CDI 1.1). See the XSD for | ||
* details of the semantics of <exclude>. | ||
* </p> | ||
* | ||
* @see <a href="https://github.com/jboss/cdi/blob/master/api/src/main/resources/beans_1_1.xsd">Beans 1.1</a> | ||
* | ||
* @author Pete Muir | ||
* @see Scanning | ||
*/ | ||
public interface Filter { | ||
|
||
/** | ||
* The name attribute | ||
* | ||
* @return the name attribute | ||
*/ | ||
String getName(); | ||
|
||
/** | ||
* Nested <if-system-property> elements | ||
* | ||
* @return nested <if-system-property> elements | ||
*/ | ||
Collection<Metadata<SystemPropertyActivation>> getSystemPropertyActivations(); | ||
|
||
/** | ||
* Nested <if-class-available> elements | ||
* | ||
* @return nested <if-class-available> elements | ||
*/ | ||
Collection<Metadata<ClassAvailableActivation>> getClassAvailableActivations(); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.