From jbossws-commits at lists.jboss.org Mon Jul 27 03:50:34 2009 Content-Type: multipart/mixed; boundary="===============7237353000763428348==" MIME-Version: 1.0 From: jbossws-commits at lists.jboss.org To: jbossws-commits at lists.jboss.org Subject: [jbossws-commits] JBossWS SVN: r10384 - in common/branches/ropalka/src/main/java/org/jboss/wsf/common: integration and 1 other directory. Date: Mon, 27 Jul 2009 03:50:34 -0400 Message-ID: <200907270750.n6R7oYCv004422@svn01.web.mwc.hst.phx2.redhat.com> --===============7237353000763428348== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Author: richard.opalka(a)jboss.com Date: 2009-07-27 03:50:34 -0400 (Mon, 27 Jul 2009) New Revision: 10384 Added: common/branches/ropalka/src/main/java/org/jboss/wsf/common/integration/ common/branches/ropalka/src/main/java/org/jboss/wsf/common/integration/C= onstants.java Log: [JBWS-2332] refactoring constants Added: common/branches/ropalka/src/main/java/org/jboss/wsf/common/integrati= on/Constants.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 --- common/branches/ropalka/src/main/java/org/jboss/wsf/common/integration/= Constants.java (rev 0) +++ common/branches/ropalka/src/main/java/org/jboss/wsf/common/integration/= Constants.java 2009-07-27 07:50:34 UTC (rev 10384) @@ -0,0 +1,49 @@ +/* + * JBoss, Home of Professional Open Source. + * Copyright 2009, Red Hat Middleware LLC, and individual contributors + * as indicated by the @author tags. See the copyright.txt file 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.wsf.common.integration; + +/** + * Cross WS stack and JBoss AS integrations constants. + * + * @author Richard Opalka + */ +public final class Constants +{ + = + /** + * Stack specific context parameters configuration property. + */ + public static final String STACK_CONTEXT_PARAMS =3D Constants.class.get= Name() + ".StackContextParams"; + /** + * Stack specific transport class configuration property. + */ + public static final String STACK_TRANSPORT_CLASS =3D Constants.class.ge= tName() + ".StackTransportParams"; + = + /** + * Forbidden constructor. + */ + private Constants() + { + super(); + } + +} --===============7237353000763428348==--