Package secParser.processors

Source Code of secParser.processors.UsernameTokenProcessor

/*
* Copyright 2004,2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package secParser.processors;

import org.apache.ws.policy.PrimitiveAssertion;

import secParser.SecurityPolicy;
import secParser.SecurityPolicyToken;
import secParser.SecurityProcessorContext;

public class UsernameTokenProcessor {

  private boolean initializedUsernameToken = false;

  /**
   * Intialize the UsernameToken complex token.
   *
   * This method creates copies of the child tokens that are allowed for
   * UsernameToken. These tokens are WssUsernameToken10 and
   * WssUsernameToken11. These copies are also initialized with the handler
   * object and then set as child tokens of UsernameToken.
   *
   * <p/> The handler object must define the methods
   * <code>doWssUsernameToken10, doWssUsernameToken11</code>.
   *
   * @param spt
   *            The token that will hold the child tokens.
   * @throws NoSuchMethodException
   */
  public void initializeUsernameToken(SecurityPolicyToken spt)
      throws NoSuchMethodException {
    // SecurityPolicyToken spt = secPol.usernameToken.copy();
    // spt.setProcessTokenMethod(handler);

    SecurityPolicyToken tmpSpt = SecurityPolicy.wssUsernameToken10.copy();
    tmpSpt.setProcessTokenMethod(this);
    spt.setChildToken(tmpSpt);

    tmpSpt = SecurityPolicy.wssUsernameToken11.copy();
    tmpSpt.setProcessTokenMethod(this);
    spt.setChildToken(tmpSpt);
  }

  public Object doUsernameToken(SecurityProcessorContext spc) {
    System.out.println("Processing "
        + spc.readCurrentSecurityToken().getTokenName() + ": "
        + SecurityProcessorContext.ACTION_NAMES[spc.getAction()]);

    SecurityPolicyToken spt = spc.readCurrentSecurityToken();
    switch (spc.getAction()) {

    case SecurityProcessorContext.START:
      if (!initializedUsernameToken) {
        try {
          initializeUsernameToken(spt);
          initializedUsernameToken = true;
        } catch (NoSuchMethodException e) {
          // TODO Auto-generated catch block
          e.printStackTrace();
          return new Boolean(false);
        }
      }
      System.out.println(spt.getTokenName());
      PrimitiveAssertion pa = spc.getAssertion();
      String text = pa.getStrValue();
      if (text != null) {
        text = text.trim();
        System.out.println("Value: '" + text.toString() + "'");
      }
    case SecurityProcessorContext.COMMIT:
      break;
    case SecurityProcessorContext.ABORT:
      break;
    }
    return new Boolean(true);
  }

  public Object doWssUsernameToken10(SecurityProcessorContext spc) {
    System.out.println("Processing wssUsernameToken10");
    return new Boolean(true);
  }

  public Object doWssUsernameToken11(SecurityProcessorContext spc) {
    System.out.println("Processing wssUsernameToken11");
    return new Boolean(true);
  }

}
TOP

Related Classes of secParser.processors.UsernameTokenProcessor

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.