-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from JaneliaSciComp/db_cleanup
Admin DB Cleanup for TmWorkspaces
- Loading branch information
Showing
7 changed files
with
160 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
jacs-model-core/src/main/java/org/janelia/model/domain/tiledMicroscope/TmWorkspaceInfo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
package org.janelia.model.domain.tiledMicroscope; | ||
|
||
import java.util.Date; | ||
|
||
public class TmWorkspaceInfo { | ||
private Long workspaceId; | ||
private String workspaceName; | ||
private Long totalSize; | ||
private String ownerKey; | ||
private Date dateCreated; | ||
|
||
public TmWorkspaceInfo() { | ||
} | ||
|
||
public TmWorkspaceInfo(Long workspaceId, String workspaceName, Long totalSize, String ownerKey, Date dateCreated) { | ||
this.workspaceId = workspaceId; | ||
this.workspaceName = workspaceName; | ||
this.totalSize = totalSize; | ||
this.ownerKey = ownerKey; | ||
this.dateCreated = dateCreated; | ||
} | ||
|
||
public String getWorkspaceName() { | ||
return workspaceName; | ||
} | ||
|
||
public void setWorkspaceName(String workspaceName) { | ||
this.workspaceName = workspaceName; | ||
} | ||
|
||
public Date getDateCreated() { | ||
return dateCreated; | ||
} | ||
|
||
public void setDateCreated(Date dateCreated) { | ||
this.dateCreated = dateCreated; | ||
} | ||
|
||
public Long getWorkspaceId() { | ||
return workspaceId; | ||
} | ||
|
||
public void setWorkspaceId(Long workspaceId) { | ||
this.workspaceId = workspaceId; | ||
} | ||
|
||
public Long getTotalSize() { | ||
return totalSize; | ||
} | ||
|
||
public void setTotalSize(Long totalSize) { | ||
this.totalSize = totalSize; | ||
} | ||
|
||
public String getOwnerKey() { | ||
return ownerKey; | ||
} | ||
|
||
public void setOwnerKey(String ownerKey) { | ||
this.ownerKey = ownerKey; | ||
} | ||
} | ||
|
||
|