Class WebXml.SecurityConstraint

java.lang.Object
cloud.piranha.webapp.impl.WebXml.SecurityConstraint
Enclosing class:
WebXml

public static class WebXml.SecurityConstraint
extends java.lang.Object
The <security-constraint> snippet inside a web.xml / webfragment.xml.
  • Nested Class Summary

    Nested Classes 
    Modifier and Type Class Description
    static class  WebXml.SecurityConstraint.WebResourceCollection
    The <web-resource-collection> snippet inside a web.xml / webfragment.xml.
  • Field Summary

    Fields 
    Modifier and Type Field Description
    java.util.List<java.lang.String> roleNames
    The list <role-name> snippets inside <auth-constraint> Note that we don't map the <auth-constraint> element separately here
    java.lang.String transportGuarantee
    The list <transport-guarantee> snippet inside <user-data-constraint> Note that we don't map the <user-data-constraint> element separately here
    java.util.List<WebXml.SecurityConstraint.WebResourceCollection> webResourceCollections  
  • Constructor Summary

    Constructors 
    Constructor Description
    SecurityConstraint()  
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • webResourceCollections

      public java.util.List<WebXml.SecurityConstraint.WebResourceCollection> webResourceCollections
    • roleNames

      public java.util.List<java.lang.String> roleNames
      The list <role-name> snippets inside <auth-constraint> Note that we don't map the <auth-constraint> element separately here
    • transportGuarantee

      public java.lang.String transportGuarantee
      The list <transport-guarantee> snippet inside <user-data-constraint> Note that we don't map the <user-data-constraint> element separately here
  • Constructor Details