Skip to content
This repository has been archived by the owner on Oct 14, 2018. It is now read-only.

Commit

Permalink
Updated to 1.0.0-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
williewheeler committed May 28, 2012
1 parent ef0fca7 commit c52a44d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -13,7 +13,7 @@

<groupId>org.zkybase</groupId>
<artifactId>kite</artifactId>
<version>0.5.0-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Kite</name>
Expand Down
Expand Up @@ -53,7 +53,7 @@ protected void doParse(Element elem, BeanDefinitionBuilder builder) {
RootBeanDefinition srcDef = new RootBeanDefinition(DefaultGuardListSource.class);
srcDef.setSource(elem);
srcDef.setRole(BeanDefinition.ROLE_INFRASTRUCTURE);
srcDef.getPropertyValues().add("guardList", new RuntimeBeanReference(elem.getAttribute("guardList")));
srcDef.getPropertyValues().add("guards", new RuntimeBeanReference(elem.getAttribute("guards")));
builder.addPropertyValue("source", srcDef);
}
}
2 changes: 1 addition & 1 deletion src/main/java/org/zkybase/kite/package-info.java
@@ -1,4 +1,4 @@
/**
* Base package for the Kite library. Includes the {@link org.zkybase.Guard} abstraction and supporting classes.
* Base package for the Kite library. Includes the {@link org.zkybase.ktie.Guard} abstraction and supporting classes.
*/
package org.zkybase.kite;
4 changes: 2 additions & 2 deletions src/main/resources/META-INF/spring.schemas
@@ -1,2 +1,2 @@
http\://zkybase.org/schema/kite/kite.xsd=org/zkybase/kite/config/xml/kite-0.5.xsd
http\://zkybase.org/schema/kite/kite-0.5.xsd=org/zkybase/kite/config/xml/kite-0.5.xsd
http\://zkybase.org/schema/kite/kite.xsd=org/zkybase/kite/config/xml/kite-1.0-SNAPSHOT.xsd
http\://zkybase.org/schema/kite/kite-1.0-SNAPSHOT.xsd=org/zkybase/kite/config/xml/kite-1.0-SNAPSHOT.xsd
Expand Up @@ -56,8 +56,6 @@ Defines the order of the Kite advice that is applied to beans annotated with Kit
</xsd:complexType>
</xsd:element>

<!-- FIXME This isn't correct. The GuardListInterceptor doesn't have a settable guards property. -->
<!--
<xsd:element name="guard-list-advice">
<xsd:annotation>
<xsd:documentation><![CDATA[
Expand Down Expand Up @@ -85,7 +83,6 @@ Creates a GuardListInterceptor bean having the specified configuration.
</xsd:complexContent>
</xsd:complexType>
</xsd:element>
-->


<!-- =========================================================================================================== -->
Expand All @@ -99,7 +96,7 @@ Creates a CircuitBreakerTemplate bean having the specified configuration.
]]></xsd:documentation>
<xsd:appinfo>
<tool:annotation>
<tool:exports type="kite.circuitbreaker.CircuitBreakerTemplate" />
<tool:exports type="org.zkybase.xkite.circuitbreaker.CircuitBreakerTemplate" />
</tool:annotation>
</xsd:appinfo>
</xsd:annotation>
Expand Down

0 comments on commit c52a44d

Please sign in to comment.