You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ki...@apache.org on 2013/01/30 06:42:09 UTC

git commit: Add sync entry to region_sunc table on region api failure

Updated Branches:
  refs/heads/regions d3089ba2a -> 60fd29dac


Add sync entry to region_sunc table on region api failure


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/60fd29da
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/60fd29da
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/60fd29da

Branch: refs/heads/regions
Commit: 60fd29dacd66c3c0f7a9771e838306e407458ecd
Parents: d3089ba
Author: Kishan Kavala <ki...@cloud.com>
Authored: Wed Jan 30 11:11:49 2013 +0530
Committer: Kishan Kavala <ki...@cloud.com>
Committed: Wed Jan 30 11:11:49 2013 +0530

----------------------------------------------------------------------
 server/src/com/cloud/region/RegionSyncVO.java      |   93 +++++++++++++++
 server/src/com/cloud/region/dao/RegionSyncDao.java |   23 ++++
 .../com/cloud/region/dao/RegionSyncDaoImpl.java    |   33 +++++
 3 files changed, 149 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/60fd29da/server/src/com/cloud/region/RegionSyncVO.java
----------------------------------------------------------------------
diff --git a/server/src/com/cloud/region/RegionSyncVO.java b/server/src/com/cloud/region/RegionSyncVO.java
new file mode 100644
index 0000000..fc3f423
--- /dev/null
+++ b/server/src/com/cloud/region/RegionSyncVO.java
@@ -0,0 +1,93 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership.  The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License.  You may obtain a copy of the License at
+//
+//   http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied.  See the License for the
+// specific language governing permissions and limitations
+// under the License.
+package com.cloud.region;
+
+import java.util.Date;
+
+import javax.persistence.Column;
+import javax.persistence.Entity;
+import javax.persistence.Id;
+import javax.persistence.Table;
+
+import com.cloud.utils.db.GenericDao;
+
+
+@Entity
+@Table(name="region_sync")
+public class RegionSyncVO implements RegionSync {
+
+	@Id
+	@Column(name="id")
+	private long id;
+
+	@Column(name="region_id")
+	private int regionId;
+
+	@Column(name="api")
+	private String api;
+
+	@Column(name=GenericDao.CREATED_COLUMN)
+	private Date createDate;
+
+	@Column(name="processed")
+	boolean processed;
+
+	public RegionSyncVO() {
+	}
+
+	public RegionSyncVO(int regionId, String api) {
+		this.regionId = regionId;
+		this.api = api;
+	}
+
+	public int getRegionId() {
+		return regionId;
+	}
+
+	public void setRegionId(int regionId) {
+		this.regionId = regionId;
+	}
+
+	public String getApi() {
+		return api;
+	}
+
+	public void setApi(String api) {
+		this.api = api;
+	}
+
+	public Date getCreateDate() {
+		return createDate;
+	}
+
+	public void setCreateDate(Date createDate) {
+		this.createDate = createDate;
+	}
+
+	public boolean isProcessed() {
+		return processed;
+	}
+
+	public void setProcessed(boolean processed) {
+		this.processed = processed;
+	}
+
+	public long getId() {
+		return id;
+	}
+		
+}

http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/60fd29da/server/src/com/cloud/region/dao/RegionSyncDao.java
----------------------------------------------------------------------
diff --git a/server/src/com/cloud/region/dao/RegionSyncDao.java b/server/src/com/cloud/region/dao/RegionSyncDao.java
new file mode 100644
index 0000000..5387d2e
--- /dev/null
+++ b/server/src/com/cloud/region/dao/RegionSyncDao.java
@@ -0,0 +1,23 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership.  The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License.  You may obtain a copy of the License at
+//
+//   http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied.  See the License for the
+// specific language governing permissions and limitations
+// under the License.
+package com.cloud.region.dao;
+
+import com.cloud.region.RegionSyncVO;
+import com.cloud.utils.db.GenericDao;
+
+public interface RegionSyncDao extends GenericDao<RegionSyncVO, Integer> {
+}

http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/60fd29da/server/src/com/cloud/region/dao/RegionSyncDaoImpl.java
----------------------------------------------------------------------
diff --git a/server/src/com/cloud/region/dao/RegionSyncDaoImpl.java b/server/src/com/cloud/region/dao/RegionSyncDaoImpl.java
new file mode 100644
index 0000000..766286e
--- /dev/null
+++ b/server/src/com/cloud/region/dao/RegionSyncDaoImpl.java
@@ -0,0 +1,33 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership.  The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License.  You may obtain a copy of the License at
+//
+//   http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied.  See the License for the
+// specific language governing permissions and limitations
+// under the License.
+package com.cloud.region.dao;
+
+import javax.ejb.Local;
+
+import org.apache.log4j.Logger;
+
+import com.cloud.region.RegionSyncVO;
+import com.cloud.utils.db.GenericDaoBase;
+
+@Local(value={RegionSyncDao.class})
+public class RegionSyncDaoImpl extends GenericDaoBase<RegionSyncVO, Integer> implements RegionSyncDao {
+    private static final Logger s_logger = Logger.getLogger(RegionSyncDaoImpl.class);
+    
+    public RegionSyncDaoImpl(){
+    	
+    }
+}