From jbossws-commits at lists.jboss.org Mon Mar 10 14:05:14 2008 Content-Type: multipart/mixed; boundary="===============5934999307632852045==" MIME-Version: 1.0 From: jbossws-commits at lists.jboss.org To: jbossws-commits at lists.jboss.org Subject: [jbossws-commits] JBossWS SVN: r5909 - stack/native/trunk/src/main/java/org/jboss/ws/extensions/security/operation. Date: Mon, 10 Mar 2008 14:01:14 -0400 Message-ID: --===============5934999307632852045== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Author: alessio.soldano(a)jboss.com Date: 2008-03-10 14:01:14 -0400 (Mon, 10 Mar 2008) New Revision: 5909 Removed: stack/native/trunk/src/main/java/org/jboss/ws/extensions/security/operat= ion/OperationDescription.java Log: Removing class no longer used Deleted: stack/native/trunk/src/main/java/org/jboss/ws/extensions/security/= operation/OperationDescription.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- stack/native/trunk/src/main/java/org/jboss/ws/extensions/security/opera= tion/OperationDescription.java 2008-03-10 17:50:55 UTC (rev 5908) +++ stack/native/trunk/src/main/java/org/jboss/ws/extensions/security/opera= tion/OperationDescription.java 2008-03-10 18:01:14 UTC (rev 5909) @@ -1,133 +0,0 @@ -/* -* JBoss, Home of Professional Open Source -* Copyright 2005, JBoss Inc., and individual contributors as indicated -* by the @authors tag. See the copyright.txt in the distribution for a -* full listing of individual contributors. -* -* This is free software; you can redistribute it and/or modify it -* under the terms of the GNU Lesser General Public License as -* published by the Free Software Foundation; either version 2.1 of -* the License, or (at your option) any later version. -* -* This software is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -* Lesser General Public License for more details. -* -* You should have received a copy of the GNU Lesser General Public -* License along with this software; if not, write to the Free -* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -* 02110-1301 USA, or see the FSF site: http://www.fsf.org. -*/ -package org.jboss.ws.extensions.security.operation; - -import java.util.List; - -import org.jboss.ws.extensions.security.Target; - - -/** - * @author Jason T. Greene - * @version $Revision$ - */ -public class OperationDescription -{ - private Class operation; - - private List targets; - - private String certificateAlias; - - private String credential; - - private String algorithm; - = - private String keyWrapAlgorithm; - = - private String tokenRefType; - - public OperationDescription(Class operation, List = targets, String certicateAlias, String credential, String algorithm, String= keyWrapAlgorithm, String tokenRefType) - { - this.operation =3D operation; - this.targets =3D targets; - this.certificateAlias =3D certicateAlias; - this.credential =3D credential; - this.algorithm =3D algorithm; - this.keyWrapAlgorithm =3D keyWrapAlgorithm; - this.tokenRefType =3D tokenRefType; - } - - public Class getOperation() - { - return operation; - } - - public void setOperation(Class operation) - { - this.operation =3D operation; - } - - public List getTargets() - { - return targets; - } - - public void setTargets(List targets) - { - this.targets =3D targets; - } - - - public String getCertificateAlias() - { - return certificateAlias; - } - - - public void setCertificateAlias(String certificateAlias) - { - this.certificateAlias =3D certificateAlias; - } - - - public String getCredential() - { - return credential; - } - - public void setCredential(String credential) - { - this.credential =3D credential; - } - - public String getAlgorithm() - { - return algorithm; - } - - public void setAlgorithm(String algorithm) - { - this.algorithm =3D algorithm; - } - - public String getKeyWrapAlgorithm() - { - return keyWrapAlgorithm; - } - - public void setKeyWrapAlgorithm(String keyWrapAlgorithm) - { - this.keyWrapAlgorithm =3D keyWrapAlgorithm; - } - - public String getTokenRefType() - { - return tokenRefType; - } - - public void setTokenRefType(String tokenRefType) - { - this.tokenRefType =3D tokenRefType; - } - -} --===============5934999307632852045==--