From 3aa4c2bda93bd8b366616b6ec3b4f14741929bb2 Mon Sep 17 00:00:00 2001 From: Roberto E. Escobar Date: Tue, 1 Apr 2014 10:34:55 -0700 Subject: refactor: Rename AccountAccess to AccountSession Change-Id: I31c1f0b82ea068d2528c726270a21c479c19a893 --- .../osee/account/rest/model/AccountAccessData.java | 68 ---------------------- .../rest/model/AccountSessionDetailsData.java | 68 ++++++++++++++++++++++ 2 files changed, 68 insertions(+), 68 deletions(-) delete mode 100644 plugins/org.eclipse.osee.account.rest.model/src/org/eclipse/osee/account/rest/model/AccountAccessData.java create mode 100644 plugins/org.eclipse.osee.account.rest.model/src/org/eclipse/osee/account/rest/model/AccountSessionDetailsData.java (limited to 'plugins/org.eclipse.osee.account.rest.model') diff --git a/plugins/org.eclipse.osee.account.rest.model/src/org/eclipse/osee/account/rest/model/AccountAccessData.java b/plugins/org.eclipse.osee.account.rest.model/src/org/eclipse/osee/account/rest/model/AccountAccessData.java deleted file mode 100644 index 8d3198945d6..00000000000 --- a/plugins/org.eclipse.osee.account.rest.model/src/org/eclipse/osee/account/rest/model/AccountAccessData.java +++ /dev/null @@ -1,68 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2013 Boeing. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html - * - * Contributors: - * Boeing - initial API and implementation - *******************************************************************************/ -package org.eclipse.osee.account.rest.model; - -import java.util.Date; -import javax.xml.bind.annotation.XmlRootElement; - -/** - * @author Roberto E. Escobar - */ -@XmlRootElement -public class AccountAccessData { - - private long accountId; - private Date createdOn; - private Date lastAccessedOn; - private String accessedFrom; - private String accessDetails; - - public long getAccountId() { - return accountId; - } - - public void setAccountId(long accountId) { - this.accountId = accountId; - } - - public Date getCreatedOn() { - return createdOn; - } - - public void setCreatedOn(Date createdOn) { - this.createdOn = createdOn; - } - - public Date getLastAccessedOn() { - return lastAccessedOn; - } - - public void setLastAccessedOn(Date lastAccessedOn) { - this.lastAccessedOn = lastAccessedOn; - } - - public String getAccessedFrom() { - return accessedFrom; - } - - public void setAccessedFrom(String accessedFrom) { - this.accessedFrom = accessedFrom; - } - - public String getAccessDetails() { - return accessDetails; - } - - public void setAccessDetails(String accessDetails) { - this.accessDetails = accessDetails; - } - -} diff --git a/plugins/org.eclipse.osee.account.rest.model/src/org/eclipse/osee/account/rest/model/AccountSessionDetailsData.java b/plugins/org.eclipse.osee.account.rest.model/src/org/eclipse/osee/account/rest/model/AccountSessionDetailsData.java new file mode 100644 index 00000000000..3eeb2612931 --- /dev/null +++ b/plugins/org.eclipse.osee.account.rest.model/src/org/eclipse/osee/account/rest/model/AccountSessionDetailsData.java @@ -0,0 +1,68 @@ +/******************************************************************************* + * Copyright (c) 2013 Boeing. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Boeing - initial API and implementation + *******************************************************************************/ +package org.eclipse.osee.account.rest.model; + +import java.util.Date; +import javax.xml.bind.annotation.XmlRootElement; + +/** + * @author Roberto E. Escobar + */ +@XmlRootElement +public class AccountSessionDetailsData { + + private long accountId; + private Date createdOn; + private Date lastAccessedOn; + private String accessedFrom; + private String accessDetails; + + public long getAccountId() { + return accountId; + } + + public void setAccountId(long accountId) { + this.accountId = accountId; + } + + public Date getCreatedOn() { + return createdOn; + } + + public void setCreatedOn(Date createdOn) { + this.createdOn = createdOn; + } + + public Date getLastAccessedOn() { + return lastAccessedOn; + } + + public void setLastAccessedOn(Date lastAccessedOn) { + this.lastAccessedOn = lastAccessedOn; + } + + public String getAccessedFrom() { + return accessedFrom; + } + + public void setAccessedFrom(String accessedFrom) { + this.accessedFrom = accessedFrom; + } + + public String getAccessDetails() { + return accessDetails; + } + + public void setAccessDetails(String accessDetails) { + this.accessDetails = accessDetails; + } + +} -- cgit v1.2.3