View Javadoc
1   /**
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements. See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership. The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License. You may obtain a copy of the License at
9    *
10   * http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied. See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.wss4j.stax.securityEvent;
20  
21  import org.apache.xml.security.stax.securityEvent.SecurityEventConstants;
22  
23  public abstract class WSSecurityEventConstants extends SecurityEventConstants { //NOPMD
24  
25      public static final Event NO_SECURITY = new Event("NoSecurity");
26      public static final Event OPERATION = new Event("Operation");
27      public static final Event TIMESTAMP = new Event("Timestamp");
28      public static final Event SIGNED_PART = new Event("SignedPart");
29      public static final Event ENCRYPTED_PART = new Event("EncryptedPart");
30      public static final Event REQUIRED_ELEMENT = new Event("RequiredElement");
31      public static final Event REQUIRED_PART = new Event("RequiredPart");
32      public static final Event ISSUED_TOKEN = new Event("IssuedToken");
33      public static final Event KERBEROS_TOKEN = new Event("KerberosToken");
34      public static final Event SAML_TOKEN = new Event("SamlToken");
35      public static final Event SECURITY_CONTEXT_TOKEN = new Event("SecurityContextToken");
36      public static final Event REL_TOKEN = new Event("RelToken");
37      public static final Event USERNAME_TOKEN = new Event("UsernameToken");
38      public static final Event HTTPS_TOKEN = new Event("HttpsToken");
39      public static final Event DERIVED_KEY_TOKEN = new Event("DerivedKeyToken");
40      public static final Event SIGNATURE_CONFIRMATION = new Event("SignatureConfirmation");
41  
42  }