Author: chris.laprun(a)jboss.com
Date: 2010-01-15 09:44:11 -0500 (Fri, 15 Jan 2010)
New Revision: 1315
Modified:
components/wsrp/trunk/common/src/main/java/org/gatein/wsrp/registration/RegistrationPropertyDescription.java
Log:
- Made key a String and renamed accessor methods to *PersistentKey to be consistent with
other persistent classes.
Modified:
components/wsrp/trunk/common/src/main/java/org/gatein/wsrp/registration/RegistrationPropertyDescription.java
===================================================================
---
components/wsrp/trunk/common/src/main/java/org/gatein/wsrp/registration/RegistrationPropertyDescription.java 2010-01-15
13:49:37 UTC (rev 1314)
+++
components/wsrp/trunk/common/src/main/java/org/gatein/wsrp/registration/RegistrationPropertyDescription.java 2010-01-15
14:44:11 UTC (rev 1315)
@@ -1,6 +1,6 @@
/*
* JBoss, a division of Red Hat
- * Copyright 2009, Red Hat Middleware, LLC, and individual
+ * Copyright 2010, Red Hat Middleware, LLC, and individual
* contributors as indicated by the @authors tag. See the
* copyright.txt in the distribution for a full listing of
* individual contributors.
@@ -38,7 +38,7 @@
*/
public class RegistrationPropertyDescription implements PropertyDescription
{
- private Long key;
+ private String key;
private QName name;
private QName type;
private String schemaLocation;
@@ -148,12 +148,12 @@
}
- public Long getKey()
+ public String getPersistentKey()
{
return key;
}
- public void setKey(Long key)
+ public void setPersistentKey(String key)
{
this.key = key;
}
Show replies by date