You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by ks...@apache.org on 2009/11/23 17:15:43 UTC

svn commit: r883390 - /webservices/juddi/trunk/juddi-core/src/main/java/org/apache/juddi/model/AuthToken.java

Author: kstam
Date: Mon Nov 23 16:15:43 2009
New Revision: 883390

URL: http://svn.apache.org/viewvc?rev=883390&view=rev
Log:
JUDDI-311 increasing authorized column from 20 to 255.

Modified:
    webservices/juddi/trunk/juddi-core/src/main/java/org/apache/juddi/model/AuthToken.java

Modified: webservices/juddi/trunk/juddi-core/src/main/java/org/apache/juddi/model/AuthToken.java
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddi-core/src/main/java/org/apache/juddi/model/AuthToken.java?rev=883390&r1=883389&r2=883390&view=diff
==============================================================================
--- webservices/juddi/trunk/juddi-core/src/main/java/org/apache/juddi/model/AuthToken.java (original)
+++ webservices/juddi/trunk/juddi-core/src/main/java/org/apache/juddi/model/AuthToken.java Mon Nov 23 16:15:43 2009
@@ -34,7 +34,6 @@
 	private static final long serialVersionUID = 1147567747533293480L;
 	private String authToken;
 	private String authorizedName;
-	private String publisherName;
 	private Date created;
 	private Date lastUsed;
 	private int numberOfUses;
@@ -48,7 +47,6 @@
 			int numberOfUses, int tokenState) {
 		this.authToken = authToken;
 		this.authorizedName = authorizedName;
-		this.publisherName = publisherName;
 		this.created = created;
 		this.lastUsed = lastUsed;
 		this.numberOfUses = numberOfUses;
@@ -64,7 +62,7 @@
 		this.authToken = authToken;
 	}
 
-	@Column(name = "authorized_name", nullable = false, length = 20)
+	@Column(name = "authorized_name", nullable = false, length = 255)
 	public String getAuthorizedName() {
 		return this.authorizedName;
 	}
@@ -72,14 +70,6 @@
 		this.authorizedName = authorizedName;
 	}
 
-	@Column(name = "publisher_name")
-	public String getPublisherName() {
-		return this.publisherName;
-	}
-	public void setPublisherName(String publisherName) {
-		this.publisherName = publisherName;
-	}
-
 	@Temporal(TemporalType.TIMESTAMP)
 	@Column(name = "created", nullable = false, length = 29)
 	public Date getCreated() {



---------------------------------------------------------------------
To unsubscribe, e-mail: juddi-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: juddi-cvs-help@ws.apache.org