Skip to content

Commit

Permalink
Release V1.4.5 (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
hiroaki-shibata authored Mar 13, 2017
1 parent 93b1d28 commit ecad02b
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 292 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
##1.4.5
BUG FIXES:
* Fixed about Executing Cell Recursive Delete API does not delete OData in cell. ([#13](https://github.com/personium/personium-core/issues/13))

## 1.4.4

MODIFICATIONS FOR RELIABILITY:
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<groupId>io.personium</groupId>
<artifactId>personium-core</artifactId>
<packaging>war</packaging>
<version>1.4.4</version>
<version>1.4.5</version>
<name>personium-core Maven Webapp</name>
<url>http://maven.apache.org</url>
<licenses>
Expand All @@ -26,7 +26,7 @@
<dependency>
<groupId>io.personium</groupId>
<artifactId>personium-lib-es-adapter</artifactId>
<version>1.4.2</version>
<version>1.4.3</version>
</dependency>
<dependency>
<groupId>io.personium</groupId>
Expand Down
82 changes: 0 additions & 82 deletions src/main/java/io/personium/core/model/impl/es/BoxCmpEsImpl.java

This file was deleted.

193 changes: 0 additions & 193 deletions src/main/java/io/personium/core/model/impl/es/CellCmpEsImpl.java

This file was deleted.

6 changes: 3 additions & 3 deletions src/main/java/io/personium/core/model/impl/es/DavNode.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class DavNode implements EsBulkRequest {
long published;
long updated;
Map<String, Object> file;
private BULK_REQUEST_TYPE requestType = BULK_REQUEST_TYPE.INDEX;
private BulkRequestType requestType = BulkRequestType.INDEX;

/** ES上のDavNode格納においてCellの内部IDを保存するJSONキー. */
public static final String KEY_CELL_ID = "c";
Expand Down Expand Up @@ -335,7 +335,7 @@ public String getType() {
}

@Override
public BULK_REQUEST_TYPE getRequestType() {
public BulkRequestType getRequestType() {
return requestType;
}

Expand All @@ -344,7 +344,7 @@ public BULK_REQUEST_TYPE getRequestType() {
* 既存の処理への影響を考慮して、デフォルト値は INDEX にしておく。
* @param request リクエスト種別
*/
public void setRequestType(BULK_REQUEST_TYPE request) {
public void setRequestType(BulkRequestType request) {
this.requestType = request;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

import io.personium.common.ads.AdsWriteFailureLogInfo;
import io.personium.common.es.EsBulkRequest;
import io.personium.common.es.EsBulkRequest.BULK_REQUEST_TYPE;
import io.personium.common.es.EsBulkRequest.BulkRequestType;
import io.personium.common.es.EsIndex;
import io.personium.common.es.response.PersoniumBulkItemResponse;
import io.personium.common.es.response.PersoniumBulkResponse;
Expand Down Expand Up @@ -176,7 +176,7 @@ public void setMoveRequest(
}
// 移動先のDavNodeが存在する場合は、そのDavNodeを削除する(ファイル実体は含まない)。
if (null != dstNode) {
dstNode.setRequestType(EsBulkRequest.BULK_REQUEST_TYPE.DELETE);
dstNode.setRequestType(EsBulkRequest.BulkRequestType.DELETE);
adsBulkRequest.add(dstNode);
esBulkRequest.add(dstNode);
setDestinationNodeForRollback(dstNode);
Expand Down Expand Up @@ -219,7 +219,7 @@ private PersoniumBulkResponse adsMove(PersoniumBulkResponse response) {
int i;
for (i = 0; i < esBulkRequest.size(); i++) {
EsBulkRequest esReq = esBulkRequest.get(i);
if (BULK_REQUEST_TYPE.DELETE != esReq.getRequestType()) {
if (BulkRequestType.DELETE != esReq.getRequestType()) {
adsUpdateBulkRequest.add(adsBulkRequest.get(i));
} else {
// Davテーブル一括更新
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/io/personium/core/rs/odata/BulkRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ public void setError(Exception error) {
}

@Override
public BULK_REQUEST_TYPE getRequestType() {
return BULK_REQUEST_TYPE.INDEX;
public BulkRequestType getRequestType() {
return BulkRequestType.INDEX;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#################################################

# core version
io.personium.core.version=1.4.4
io.personium.core.version=1.4.5

# general configurations
io.personium.core.unitUser.issuers=
Expand Down
Loading

0 comments on commit ecad02b

Please sign in to comment.