Modified: cxf/branches/2.5.x-fixes/services/sts/sts-core/src/main/java/org/apache/cxf/sts/claims/ClaimsParser.java URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/services/sts/sts-core/src/main/java/org/apache/cxf/sts/claims/ClaimsParser.java?rev=1310391&r1=1310390&r2=1310391&view=diff ============================================================================== --- cxf/branches/2.5.x-fixes/services/sts/sts-core/src/main/java/org/apache/cxf/sts/claims/ClaimsParser.java (original) +++ cxf/branches/2.5.x-fixes/services/sts/sts-core/src/main/java/org/apache/cxf/sts/claims/ClaimsParser.java Fri Apr 6 15:14:07 2012 @@ -1,39 +1,39 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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 org.apache.cxf.sts.claims; - -import org.w3c.dom.Element; - -public interface ClaimsParser { - - /** - * @param claim Element to parse claim request from - * @return RequestClaim parsed from claim - */ - RequestClaim parse(Element claim); - - /** - * This method indicates the claims dialect this Parser can handle. - * - * @return Name of supported Dialect - */ - String getSupportedDialect(); - -} +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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 org.apache.cxf.sts.claims; + +import org.w3c.dom.Element; + +public interface ClaimsParser { + + /** + * @param claim Element to parse claim request from + * @return RequestClaim parsed from claim + */ + RequestClaim parse(Element claim); + + /** + * This method indicates the claims dialect this Parser can handle. + * + * @return Name of supported Dialect + */ + String getSupportedDialect(); + +}
Modified: cxf/branches/2.5.x-fixes/services/sts/sts-core/src/main/java/org/apache/cxf/sts/claims/IdentityClaimsParser.java URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/services/sts/sts-core/src/main/java/org/apache/cxf/sts/claims/IdentityClaimsParser.java?rev=1310391&r1=1310390&r2=1310391&view=diff ============================================================================== --- cxf/branches/2.5.x-fixes/services/sts/sts-core/src/main/java/org/apache/cxf/sts/claims/IdentityClaimsParser.java (original) +++ cxf/branches/2.5.x-fixes/services/sts/sts-core/src/main/java/org/apache/cxf/sts/claims/IdentityClaimsParser.java Fri Apr 6 15:14:07 2012 @@ -1,105 +1,105 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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 org.apache.cxf.sts.claims; - -import java.net.URI; -import java.net.URISyntaxException; - -import java.util.logging.Level; -import java.util.logging.Logger; - -import org.w3c.dom.Element; -import org.w3c.dom.Node; - -import org.apache.cxf.common.logging.LogUtils; - -public class IdentityClaimsParser implements ClaimsParser { - - public static final String IDENTITY_CLAIMS_DIALECT = - "http://schemas.xmlsoap.org/ws/2005/05/identity"; - - private static final Logger LOG = LogUtils.getL7dLogger(IdentityClaimsParser.class); - - public RequestClaim parse(Element claim) { - return parseClaimType(claim); - } - - public static RequestClaim parseClaimType(Element claimType) { - String claimLocalName = claimType.getLocalName(); - String claimNS = claimType.getNamespaceURI(); - if ("ClaimType".equals(claimLocalName)) { - String claimTypeUri = claimType.getAttribute("Uri"); - String claimTypeOptional = claimType.getAttribute("Optional"); - RequestClaim requestClaim = new RequestClaim(); - try { - requestClaim.setClaimType(new URI(claimTypeUri)); - } catch (URISyntaxException e) { - LOG.log( - Level.WARNING, - "Cannot create URI from the given ClaimType attribute value " + claimTypeUri, - e - ); - } - requestClaim.setOptional(Boolean.parseBoolean(claimTypeOptional)); - return requestClaim; - } else if ("ClaimValue".equals(claimLocalName)) { - String claimTypeUri = claimType.getAttribute("Uri"); - String claimTypeOptional = claimType.getAttribute("Optional"); - RequestClaim requestClaim = new RequestClaim(); - try { - requestClaim.setClaimType(new URI(claimTypeUri)); - } catch (URISyntaxException e) { - LOG.log( - Level.WARNING, - "Cannot create URI from the given ClaimTye attribute value " + claimTypeUri, - e - ); - } - - Node valueNode = claimType.getFirstChild(); - if (valueNode != null) { - if ("Value".equals(valueNode.getLocalName())) { - requestClaim.setClaimValue(valueNode.getTextContent()); - } else { - LOG.warning("Unsupported child element of ClaimValue element " - + valueNode.getLocalName()); - return null; - } - } else { - LOG.warning("No child element of ClaimValue element available"); - return null; - } - - requestClaim.setOptional(Boolean.parseBoolean(claimTypeOptional)); - - return requestClaim; - } - - LOG.fine("Found unknown element: " + claimLocalName + " " + claimNS); - return null; - } - - /** - * Return the supported dialect of this class - */ - public String getSupportedDialect() { - return IDENTITY_CLAIMS_DIALECT; - } -} +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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 org.apache.cxf.sts.claims; + +import java.net.URI; +import java.net.URISyntaxException; + +import java.util.logging.Level; +import java.util.logging.Logger; + +import org.w3c.dom.Element; +import org.w3c.dom.Node; + +import org.apache.cxf.common.logging.LogUtils; + +public class IdentityClaimsParser implements ClaimsParser { + + public static final String IDENTITY_CLAIMS_DIALECT = + "http://schemas.xmlsoap.org/ws/2005/05/identity"; + + private static final Logger LOG = LogUtils.getL7dLogger(IdentityClaimsParser.class); + + public RequestClaim parse(Element claim) { + return parseClaimType(claim); + } + + public static RequestClaim parseClaimType(Element claimType) { + String claimLocalName = claimType.getLocalName(); + String claimNS = claimType.getNamespaceURI(); + if ("ClaimType".equals(claimLocalName)) { + String claimTypeUri = claimType.getAttribute("Uri"); + String claimTypeOptional = claimType.getAttribute("Optional"); + RequestClaim requestClaim = new RequestClaim(); + try { + requestClaim.setClaimType(new URI(claimTypeUri)); + } catch (URISyntaxException e) { + LOG.log( + Level.WARNING, + "Cannot create URI from the given ClaimType attribute value " + claimTypeUri, + e + ); + } + requestClaim.setOptional(Boolean.parseBoolean(claimTypeOptional)); + return requestClaim; + } else if ("ClaimValue".equals(claimLocalName)) { + String claimTypeUri = claimType.getAttribute("Uri"); + String claimTypeOptional = claimType.getAttribute("Optional"); + RequestClaim requestClaim = new RequestClaim(); + try { + requestClaim.setClaimType(new URI(claimTypeUri)); + } catch (URISyntaxException e) { + LOG.log( + Level.WARNING, + "Cannot create URI from the given ClaimTye attribute value " + claimTypeUri, + e + ); + } + + Node valueNode = claimType.getFirstChild(); + if (valueNode != null) { + if ("Value".equals(valueNode.getLocalName())) { + requestClaim.setClaimValue(valueNode.getTextContent()); + } else { + LOG.warning("Unsupported child element of ClaimValue element " + + valueNode.getLocalName()); + return null; + } + } else { + LOG.warning("No child element of ClaimValue element available"); + return null; + } + + requestClaim.setOptional(Boolean.parseBoolean(claimTypeOptional)); + + return requestClaim; + } + + LOG.fine("Found unknown element: " + claimLocalName + " " + claimNS); + return null; + } + + /** + * Return the supported dialect of this class + */ + public String getSupportedDialect() { + return IDENTITY_CLAIMS_DIALECT; + } +} Propchange: cxf/branches/2.5.x-fixes/services/sts/sts-core/src/main/java/org/apache/cxf/sts/claims/IdentityClaimsParser.java ------------------------------------------------------------------------------ svn:eol-style = native Modified: cxf/branches/2.5.x-fixes/services/sts/sts-core/src/test/java/org/apache/cxf/sts/common/CustomClaimParser.java URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/services/sts/sts-core/src/test/java/org/apache/cxf/sts/common/CustomClaimParser.java?rev=1310391&r1=1310390&r2=1310391&view=diff ============================================================================== --- cxf/branches/2.5.x-fixes/services/sts/sts-core/src/test/java/org/apache/cxf/sts/common/CustomClaimParser.java (original) +++ cxf/branches/2.5.x-fixes/services/sts/sts-core/src/test/java/org/apache/cxf/sts/common/CustomClaimParser.java Fri Apr 6 15:14:07 2012 @@ -1,68 +1,68 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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 org.apache.cxf.sts.common; - -import java.net.URI; - -import org.w3c.dom.Element; - -import org.apache.cxf.sts.claims.ClaimsParser; -import org.apache.cxf.sts.claims.RequestClaim; - -public class CustomClaimParser implements ClaimsParser { - - public static final String CLAIMS_DIALECT = "http://my.custom.org/my/custom/namespace"; - - public RequestClaim parse(Element claim) { - - String claimLocalName = claim.getLocalName(); - String claimNS = claim.getNamespaceURI(); - if (CLAIMS_DIALECT.equals(claimNS) && "MyElement".equals(claimLocalName)) { - String claimTypeUri = claim.getAttribute("Uri"); - CustomRequestClaim response = new CustomRequestClaim(); - response.setClaimType(URI.create(claimTypeUri)); - String claimValue = claim.getAttribute("value"); - response.setClaimValue(claimValue); - String scope = claim.getAttribute("scope"); - response.setScope(scope); - return response; - } - return null; - } - - public String getSupportedDialect() { - return CLAIMS_DIALECT; - } - - /** - * Extends RequestClaim class to add additional attributes - */ - public class CustomRequestClaim extends RequestClaim { - private String scope; - - public String getScope() { - return scope; - } - - public void setScope(String scope) { - this.scope = scope; - } - } - -} +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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 org.apache.cxf.sts.common; + +import java.net.URI; + +import org.w3c.dom.Element; + +import org.apache.cxf.sts.claims.ClaimsParser; +import org.apache.cxf.sts.claims.RequestClaim; + +public class CustomClaimParser implements ClaimsParser { + + public static final String CLAIMS_DIALECT = "http://my.custom.org/my/custom/namespace"; + + public RequestClaim parse(Element claim) { + + String claimLocalName = claim.getLocalName(); + String claimNS = claim.getNamespaceURI(); + if (CLAIMS_DIALECT.equals(claimNS) && "MyElement".equals(claimLocalName)) { + String claimTypeUri = claim.getAttribute("Uri"); + CustomRequestClaim response = new CustomRequestClaim(); + response.setClaimType(URI.create(claimTypeUri)); + String claimValue = claim.getAttribute("value"); + response.setClaimValue(claimValue); + String scope = claim.getAttribute("scope"); + response.setScope(scope); + return response; + } + return null; + } + + public String getSupportedDialect() { + return CLAIMS_DIALECT; + } + + /** + * Extends RequestClaim class to add additional attributes + */ + public class CustomRequestClaim extends RequestClaim { + private String scope; + + public String getScope() { + return scope; + } + + public void setScope(String scope) { + this.scope = scope; + } + } + +} Propchange: cxf/branches/2.5.x-fixes/services/sts/sts-core/src/test/java/org/apache/cxf/sts/common/CustomClaimParser.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/services/wsn/wsn-core/src/main/java/org/apache/cxf/wsn/CreatePullPointMBean.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/services/wsn/wsn-core/src/main/java/org/apache/cxf/wsn/EndpointMBean.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/services/wsn/wsn-core/src/main/java/org/apache/cxf/wsn/NotificationBrokerMBean.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/services/wsn/wsn-core/src/main/java/org/apache/cxf/wsn/services/JaxwsCreatePullPointMBean.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/services/wsn/wsn-core/src/main/java/org/apache/cxf/wsn/services/JaxwsNotificationBrokerMBean.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/src/site/site.xml ------------------------------------------------------------------------------ --- svn:mime-type (original) +++ svn:mime-type Fri Apr 6 15:14:07 2012 @@ -1 +1 @@ -text/plain +text/xml Propchange: cxf/branches/2.5.x-fixes/systests/rs-security/src/test/resources/logging.properties ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/rs-security/src/test/resources/logging.properties ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: cxf/branches/2.5.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/beanincreationexception/DummyPlatformTransactionManager.java URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/beanincreationexception/DummyPlatformTransactionManager.java?rev=1310391&r1=1310390&r2=1310391&view=diff ============================================================================== --- cxf/branches/2.5.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/beanincreationexception/DummyPlatformTransactionManager.java (original) +++ cxf/branches/2.5.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/beanincreationexception/DummyPlatformTransactionManager.java Fri Apr 6 15:14:07 2012 @@ -1,43 +1,43 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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 org.apache.cxf.systest.beanincreationexception; - -import org.springframework.transaction.PlatformTransactionManager; -import org.springframework.transaction.TransactionDefinition; -import org.springframework.transaction.TransactionException; -import org.springframework.transaction.TransactionStatus; - -public class DummyPlatformTransactionManager implements PlatformTransactionManager { - - public void commit(TransactionStatus arg0) throws TransactionException { - // TODO Auto-generated method stub - - } - - public TransactionStatus getTransaction(TransactionDefinition arg0) throws TransactionException { - // TODO Auto-generated method stub - return null; - } - - public void rollback(TransactionStatus arg0) throws TransactionException { - // TODO Auto-generated method stub - - } - -} +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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 org.apache.cxf.systest.beanincreationexception; + +import org.springframework.transaction.PlatformTransactionManager; +import org.springframework.transaction.TransactionDefinition; +import org.springframework.transaction.TransactionException; +import org.springframework.transaction.TransactionStatus; + +public class DummyPlatformTransactionManager implements PlatformTransactionManager { + + public void commit(TransactionStatus arg0) throws TransactionException { + // TODO Auto-generated method stub + + } + + public TransactionStatus getTransaction(TransactionDefinition arg0) throws TransactionException { + // TODO Auto-generated method stub + return null; + } + + public void rollback(TransactionStatus arg0) throws TransactionException { + // TODO Auto-generated method stub + + } + +} Modified: cxf/branches/2.5.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/beanincreationexception/TestBeanABO.java URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/beanincreationexception/TestBeanABO.java?rev=1310391&r1=1310390&r2=1310391&view=diff ============================================================================== --- cxf/branches/2.5.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/beanincreationexception/TestBeanABO.java (original) +++ cxf/branches/2.5.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/beanincreationexception/TestBeanABO.java Fri Apr 6 15:14:07 2012 @@ -1,23 +1,23 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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 org.apache.cxf.systest.beanincreationexception; - -public interface TestBeanABO { - -} +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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 org.apache.cxf.systest.beanincreationexception; + +public interface TestBeanABO { + +} Modified: cxf/branches/2.5.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/beanincreationexception/TestBeanABOImpl.java URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/beanincreationexception/TestBeanABOImpl.java?rev=1310391&r1=1310390&r2=1310391&view=diff ============================================================================== --- cxf/branches/2.5.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/beanincreationexception/TestBeanABOImpl.java (original) +++ cxf/branches/2.5.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/beanincreationexception/TestBeanABOImpl.java Fri Apr 6 15:14:07 2012 @@ -1,37 +1,37 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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 org.apache.cxf.systest.beanincreationexception; - -public class TestBeanABOImpl implements TestBeanABO { - private TestBeanABO bean; - private AddNumbersPortType client; - - public void setBean(TestBeanABO bean) { - this.bean = bean; - } - - public void setClient(AddNumbersPortType client) { - this.client = client; - } - - public String nothing() { - return "" + bean + client; - } - -} +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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 org.apache.cxf.systest.beanincreationexception; + +public class TestBeanABOImpl implements TestBeanABO { + private TestBeanABO bean; + private AddNumbersPortType client; + + public void setBean(TestBeanABO bean) { + this.bean = bean; + } + + public void setClient(AddNumbersPortType client) { + this.client = client; + } + + public String nothing() { + return "" + bean + client; + } + +} Propchange: cxf/branches/2.5.x-fixes/systests/ws-rm/ ------------------------------------------------------------------------------ --- svn:ignore (added) +++ svn:ignore Fri Apr 6 15:14:07 2012 @@ -0,0 +1,16 @@ +.pmd +.checkstyle +.ruleset +target +.settings +.classpath +.project +.wtpmodules +prj.el +.jdee_classpath +.jdee_sources +velocity.log +eclipse-classes +*.ipr +*.iml +*.iws Modified: cxf/branches/2.5.x-fixes/systests/ws-rm/src/test/java/org/apache/cxf/systest/ws/rm/SlowProcessingSimulator.java URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/systests/ws-rm/src/test/java/org/apache/cxf/systest/ws/rm/SlowProcessingSimulator.java?rev=1310391&r1=1310390&r2=1310391&view=diff ============================================================================== --- cxf/branches/2.5.x-fixes/systests/ws-rm/src/test/java/org/apache/cxf/systest/ws/rm/SlowProcessingSimulator.java (original) +++ cxf/branches/2.5.x-fixes/systests/ws-rm/src/test/java/org/apache/cxf/systest/ws/rm/SlowProcessingSimulator.java Fri Apr 6 15:14:07 2012 @@ -1,88 +1,88 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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 org.apache.cxf.systest.ws.rm; - -import java.util.logging.Level; -import java.util.logging.Logger; - -import org.apache.cxf.binding.soap.SoapBindingConstants; -import org.apache.cxf.common.logging.LogUtils; -import org.apache.cxf.interceptor.Fault; -import org.apache.cxf.message.Message; -import org.apache.cxf.phase.AbstractPhaseInterceptor; -import org.apache.cxf.phase.Phase; -import org.apache.cxf.ws.addressing.AddressingProperties; -import org.apache.cxf.ws.addressing.ContextUtils; - -public class SlowProcessingSimulator extends AbstractPhaseInterceptor<Message> { - private static final Logger LOG = LogUtils.getLogger(SlowProcessingSimulator.class); - - private long delay = 10000L; - private String action; - - public SlowProcessingSimulator() { - this(Phase.USER_PROTOCOL); - } - - public SlowProcessingSimulator(String p) { - super(p); - } - - - public long getDelay() { - return delay; - } - - public void setDelay(long delay) { - this.delay = delay; - } - - public String getAction() { - return action; - } - - public void setAction(String action) { - this.action = action; - } - - public void handleMessage(Message message) throws Fault { - try { - // sleep delay msec for the specified action or any action if unspecified. - String a = getAction(message); - LOG.log(Level.INFO, "action=" + a); - if (null == action || action.equals(a)) { - LOG.log(Level.INFO, "sleeping " + delay + " msec ..."); - Thread.sleep(delay); - } - } catch (InterruptedException e) { - LOG.log(Level.INFO, "interrupted"); - } - LOG.log(Level.INFO, "continuing"); - } - - private String getAction(Message message) { - final AddressingProperties ap = ContextUtils.retrieveMAPs(message, false, false); - if (ap != null && ap.getAction() != null) { - return ap.getAction().getValue(); - } - return (String)message.get(SoapBindingConstants.SOAP_ACTION); - } - -} +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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 org.apache.cxf.systest.ws.rm; + +import java.util.logging.Level; +import java.util.logging.Logger; + +import org.apache.cxf.binding.soap.SoapBindingConstants; +import org.apache.cxf.common.logging.LogUtils; +import org.apache.cxf.interceptor.Fault; +import org.apache.cxf.message.Message; +import org.apache.cxf.phase.AbstractPhaseInterceptor; +import org.apache.cxf.phase.Phase; +import org.apache.cxf.ws.addressing.AddressingProperties; +import org.apache.cxf.ws.addressing.ContextUtils; + +public class SlowProcessingSimulator extends AbstractPhaseInterceptor<Message> { + private static final Logger LOG = LogUtils.getLogger(SlowProcessingSimulator.class); + + private long delay = 10000L; + private String action; + + public SlowProcessingSimulator() { + this(Phase.USER_PROTOCOL); + } + + public SlowProcessingSimulator(String p) { + super(p); + } + + + public long getDelay() { + return delay; + } + + public void setDelay(long delay) { + this.delay = delay; + } + + public String getAction() { + return action; + } + + public void setAction(String action) { + this.action = action; + } + + public void handleMessage(Message message) throws Fault { + try { + // sleep delay msec for the specified action or any action if unspecified. + String a = getAction(message); + LOG.log(Level.INFO, "action=" + a); + if (null == action || action.equals(a)) { + LOG.log(Level.INFO, "sleeping " + delay + " msec ..."); + Thread.sleep(delay); + } + } catch (InterruptedException e) { + LOG.log(Level.INFO, "interrupted"); + } + LOG.log(Level.INFO, "continuing"); + } + + private String getAction(Message message) { + final AddressingProperties ap = ContextUtils.retrieveMAPs(message, false, false); + if (ap != null && ap.getAction() != null) { + return ap.getAction().getValue(); + } + return (String)message.get(SoapBindingConstants.SOAP_ACTION); + } + +} Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/pom.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/java/org/apache/cxf/systest/wssec/examples/common/CommonPasswordCallback.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/java/org/apache/cxf/systest/wssec/examples/common/DoubleItImpl.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/java/org/apache/cxf/systest/wssec/examples/common/DoubleItPortTypeImpl.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/java/org/apache/cxf/systest/wssec/examples/saml/SamlCallbackHandler.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/java/org/apache/cxf/systest/wssec/examples/saml/SamlTokenTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/java/org/apache/cxf/systest/wssec/examples/saml/server/Server.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/java/org/apache/cxf/systest/wssec/examples/secconv/SecureConversationTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/java/org/apache/cxf/systest/wssec/examples/secconv/server/Server.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/java/org/apache/cxf/systest/wssec/examples/sts/STSServer.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/java/org/apache/cxf/systest/wssec/examples/ut/UsernameTokenTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/java/org/apache/cxf/systest/wssec/examples/ut/server/Server.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/java/org/apache/cxf/systest/wssec/examples/x509/X509TokenTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/java/org/apache/cxf/systest/wssec/examples/x509/server/Server.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/DoubleItLogical.wsdl ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/DoubleItLogical.wsdl ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/alice.properties ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/alice.properties ------------------------------------------------------------------------------ svn:mime-type = text/plain Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/bob.properties ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/bob.properties ------------------------------------------------------------------------------ svn:mime-type = text/plain Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/cxfca.properties ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/cxfca.properties ------------------------------------------------------------------------------ svn:mime-type = text/plain Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/log4j.properties ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/log4j.properties ------------------------------------------------------------------------------ svn:mime-type = text/plain Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/logging.properties ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/logging.properties ------------------------------------------------------------------------------ svn:mime-type = text/plain Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/saml/DoubleItSaml.wsdl ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/saml/DoubleItSaml.wsdl ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/saml/client/client.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/saml/client/client.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/saml/server/server.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/saml/server/server.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/secconv/DoubleItSecConv.wsdl ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/secconv/DoubleItSecConv.wsdl ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/secconv/client/client.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/secconv/client/client.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/secconv/server/server.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/secconv/server/server.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/sts/cxf-symmetric.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/sts/cxf-symmetric.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/sts/ws-trust-1.4-service.wsdl ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/sts/ws-trust-1.4-service.wsdl ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/ut/DoubleItUt.wsdl ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/ut/DoubleItUt.wsdl ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/ut/client/client.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/ut/client/client.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/ut/server/server.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/ut/server/server.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/x509/DoubleItX509.wsdl ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/x509/DoubleItX509.wsdl ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/x509/client/client.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/x509/client/client.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/x509/server/server.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security-examples/src/test/resources/org/apache/cxf/systest/wssec/examples/x509/server/server.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/gcm/GCMTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/gcm/server/Server.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/policy/PolicyAlternativeTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/policy/server/Server.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/ut/SecurityHeaderCacheInterceptor.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/ut/UsernameTokenDerivedTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/ut/server/ServerDerived.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/resources/org/apache/cxf/systest/ws/gcm/DoubleItGCM.wsdl ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/resources/org/apache/cxf/systest/ws/gcm/DoubleItGCM.wsdl ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/resources/org/apache/cxf/systest/ws/gcm/client/client.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/resources/org/apache/cxf/systest/ws/gcm/client/client.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/resources/org/apache/cxf/systest/ws/gcm/server/server.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/resources/org/apache/cxf/systest/ws/gcm/server/server.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/resources/org/apache/cxf/systest/ws/policy/DoubleItPolicy.wsdl ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/resources/org/apache/cxf/systest/ws/policy/DoubleItPolicy.wsdl ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/resources/org/apache/cxf/systest/ws/policy/client/client.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/resources/org/apache/cxf/systest/ws/policy/client/client.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/resources/org/apache/cxf/systest/ws/policy/server/server.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/resources/org/apache/cxf/systest/ws/policy/server/server.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/resources/org/apache/cxf/systest/ws/security/revocation.properties ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/resources/org/apache/cxf/systest/ws/security/revocation.properties ------------------------------------------------------------------------------ svn:mime-type = text/plain Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/resources/org/apache/cxf/systest/ws/ut/DoubleItUtDerived.wsdl ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/resources/org/apache/cxf/systest/ws/ut/DoubleItUtDerived.wsdl ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/resources/org/apache/cxf/systest/ws/ut/client/client-derived.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/resources/org/apache/cxf/systest/ws/ut/client/client-derived.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/resources/org/apache/cxf/systest/ws/ut/server/server-derived.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/resources/org/apache/cxf/systest/ws/ut/server/server-derived.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/resources/org/apache/cxf/systest/ws/x509/DoubleItX509Signature.wsdl ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.5.x-fixes/systests/ws-security/src/test/resources/org/apache/cxf/systest/ws/x509/DoubleItX509Signature.wsdl ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: cxf/branches/2.5.x-fixes/systests/wsdl_maven/codegen/src/it/cxf-4004/ ------------------------------------------------------------------------------ --- svn:ignore (added) +++ svn:ignore Fri Apr 6 15:14:07 2012 @@ -0,0 +1,16 @@ +.pmd +.checkstyle +.ruleset +target +.settings +.classpath +.project +.wtpmodules +prj.el +.jdee_classpath +.jdee_sources +velocity.log +eclipse-classes +*.ipr +*.iml +*.iws Propchange: cxf/branches/2.5.x-fixes/systests/wsdl_maven/codegen/src/it/cxf-4004/pom.xml ------------------------------------------------------------------------------ --- svn:mime-type (original) +++ svn:mime-type Fri Apr 6 15:14:07 2012 @@ -1 +1 @@ -text/plain +text/xml Propchange: cxf/branches/2.5.x-fixes/systests/wsdl_maven/codegen/src/it/cxf-4004/src/main/resources/wsdl/CustomerService.wsdl ------------------------------------------------------------------------------ --- svn:mime-type (original) +++ svn:mime-type Fri Apr 6 15:14:07 2012 @@ -1 +1 @@ -text/plain +text/xml Propchange: cxf/branches/2.5.x-fixes/systests/wsdl_maven/codegen/src/it/cxf-4004/src/main/resources/wsdl/binding.xml ------------------------------------------------------------------------------ --- svn:mime-type (original) +++ svn:mime-type Fri Apr 6 15:14:07 2012 @@ -1 +1 @@ -text/plain +text/xml Propchange: cxf/branches/2.5.x-fixes/systests/wsdl_maven/codegen/src/it/it-parent/ ------------------------------------------------------------------------------ --- svn:ignore (added) +++ svn:ignore Fri Apr 6 15:14:07 2012 @@ -0,0 +1,16 @@ +.pmd +.checkstyle +.ruleset +target +.settings +.classpath +.project +.wtpmodules +prj.el +.jdee_classpath +.jdee_sources +velocity.log +eclipse-classes +*.ipr +*.iml +*.iws Propchange: cxf/branches/2.5.x-fixes/systests/wsdl_maven/codegen/src/it/it-parent/pom.xml ------------------------------------------------------------------------------ --- svn:mime-type (original) +++ svn:mime-type Fri Apr 6 15:14:07 2012 @@ -1 +1 @@ -text/plain +text/xml Propchange: cxf/branches/2.5.x-fixes/systests/wsdl_maven/codegen/src/it/settings.xml ------------------------------------------------------------------------------ --- svn:mime-type (original) +++ svn:mime-type Fri Apr 6 15:14:07 2012 @@ -1 +1 @@ -text/plain +text/xml
