Skip to content
Snippets Groups Projects
Commit b78cb286 authored by yvesn's avatar yvesn
Browse files

SSDM-6118: removed @TechPreview for content copy / external DMS

parent e60fdf93
No related branches found
No related tags found
No related merge requests found
Showing
with 0 additions and 21 deletions
...@@ -280,7 +280,6 @@ public interface IApplicationServerApi extends IRpcService ...@@ -280,7 +280,6 @@ public interface IApplicationServerApi extends IRpcService
public List<PersonPermId> createPersons(String sessionToken, List<PersonCreation> newPersons); public List<PersonPermId> createPersons(String sessionToken, List<PersonCreation> newPersons);
@TechPreview
public List<ExternalDmsPermId> createExternalDataManagementSystems(String sessionToken, public List<ExternalDmsPermId> createExternalDataManagementSystems(String sessionToken,
List<ExternalDmsCreation> newExternalDataManagementSystems); List<ExternalDmsCreation> newExternalDataManagementSystems);
...@@ -306,7 +305,6 @@ public interface IApplicationServerApi extends IRpcService ...@@ -306,7 +305,6 @@ public interface IApplicationServerApi extends IRpcService
public void updateMaterialTypes(String sessionToken, List<MaterialTypeUpdate> materialTypeUpdates); public void updateMaterialTypes(String sessionToken, List<MaterialTypeUpdate> materialTypeUpdates);
@TechPreview
public void updateExternalDataManagementSystems(String sessionToken, List<ExternalDmsUpdate> externalDmsUpdates); public void updateExternalDataManagementSystems(String sessionToken, List<ExternalDmsUpdate> externalDmsUpdates);
public void updatePropertyTypes(String sessionToken, List<PropertyTypeUpdate> propertyTypeUpdates); public void updatePropertyTypes(String sessionToken, List<PropertyTypeUpdate> propertyTypeUpdates);
...@@ -363,7 +361,6 @@ public interface IApplicationServerApi extends IRpcService ...@@ -363,7 +361,6 @@ public interface IApplicationServerApi extends IRpcService
public Map<IPersonId, Person> getPersons(String sessionToken, List<? extends IPersonId> ids, PersonFetchOptions fetchOptions); public Map<IPersonId, Person> getPersons(String sessionToken, List<? extends IPersonId> ids, PersonFetchOptions fetchOptions);
@TechPreview
public Map<IExternalDmsId, ExternalDms> getExternalDataManagementSystems(String sessionToken, List<? extends IExternalDmsId> externalDmsIds, public Map<IExternalDmsId, ExternalDms> getExternalDataManagementSystems(String sessionToken, List<? extends IExternalDmsId> externalDmsIds,
ExternalDmsFetchOptions fetchOptions); ExternalDmsFetchOptions fetchOptions);
...@@ -395,7 +392,6 @@ public interface IApplicationServerApi extends IRpcService ...@@ -395,7 +392,6 @@ public interface IApplicationServerApi extends IRpcService
public SearchResult<Material> searchMaterials(String sessionToken, MaterialSearchCriteria searchCriteria, MaterialFetchOptions fetchOptions); public SearchResult<Material> searchMaterials(String sessionToken, MaterialSearchCriteria searchCriteria, MaterialFetchOptions fetchOptions);
@TechPreview
public SearchResult<ExternalDms> searchExternalDataManagementSystems(String sessionToken, ExternalDmsSearchCriteria searchCriteria, public SearchResult<ExternalDms> searchExternalDataManagementSystems(String sessionToken, ExternalDmsSearchCriteria searchCriteria,
ExternalDmsFetchOptions fetchOptions); ExternalDmsFetchOptions fetchOptions);
...@@ -469,7 +465,6 @@ public interface IApplicationServerApi extends IRpcService ...@@ -469,7 +465,6 @@ public interface IApplicationServerApi extends IRpcService
public void deleteEntityTypes(String sessionToken, List<? extends IEntityTypeId> entityTypeIds, EntityTypeDeletionOptions deletionOptions); public void deleteEntityTypes(String sessionToken, List<? extends IEntityTypeId> entityTypeIds, EntityTypeDeletionOptions deletionOptions);
@TechPreview
public void deleteExternalDataManagementSystems(String sessionToken, List<? extends IExternalDmsId> externalDmsIds, public void deleteExternalDataManagementSystems(String sessionToken, List<? extends IExternalDmsId> externalDmsIds,
ExternalDmsDeletionOptions deletionOptions); ExternalDmsDeletionOptions deletionOptions);
......
...@@ -26,7 +26,6 @@ import ch.systemsx.cisd.base.annotation.JsonObject; ...@@ -26,7 +26,6 @@ import ch.systemsx.cisd.base.annotation.JsonObject;
import ch.systemsx.cisd.common.annotation.TechPreview; import ch.systemsx.cisd.common.annotation.TechPreview;
@JsonObject("as.dto.dataset.ContentCopy") @JsonObject("as.dto.dataset.ContentCopy")
@TechPreview
public class ContentCopy implements Serializable public class ContentCopy implements Serializable
{ {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
......
...@@ -93,14 +93,12 @@ public class LinkedData implements Serializable ...@@ -93,14 +93,12 @@ public class LinkedData implements Serializable
this.externalDms = externalDms; this.externalDms = externalDms;
} }
@TechPreview
@JsonIgnore @JsonIgnore
public List<ContentCopy> getContentCopies() public List<ContentCopy> getContentCopies()
{ {
return contentCopies; return contentCopies;
} }
@TechPreview
public void setContentCopies(List<ContentCopy> contentCopies) public void setContentCopies(List<ContentCopy> contentCopies)
{ {
this.contentCopies = contentCopies; this.contentCopies = contentCopies;
......
...@@ -22,7 +22,6 @@ import ch.systemsx.cisd.base.annotation.JsonObject; ...@@ -22,7 +22,6 @@ import ch.systemsx.cisd.base.annotation.JsonObject;
import ch.systemsx.cisd.common.annotation.TechPreview; import ch.systemsx.cisd.common.annotation.TechPreview;
@JsonObject("as.dto.dataset.create.ContentCopyCreation") @JsonObject("as.dto.dataset.create.ContentCopyCreation")
@TechPreview
public class ContentCopyCreation implements ICreation public class ContentCopyCreation implements ICreation
{ {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
......
...@@ -69,13 +69,11 @@ public class LinkedDataCreation implements ICreation ...@@ -69,13 +69,11 @@ public class LinkedDataCreation implements ICreation
this.externalDmsId = externalDmsId; this.externalDmsId = externalDmsId;
} }
@TechPreview
public List<ContentCopyCreation> getContentCopies() public List<ContentCopyCreation> getContentCopies()
{ {
return contentCopies; return contentCopies;
} }
@TechPreview
public void setContentCopies(List<ContentCopyCreation> contentCopies) public void setContentCopies(List<ContentCopyCreation> contentCopies)
{ {
this.contentCopies = contentCopies; this.contentCopies = contentCopies;
......
...@@ -10,7 +10,6 @@ import ch.systemsx.cisd.common.annotation.TechPreview; ...@@ -10,7 +10,6 @@ import ch.systemsx.cisd.common.annotation.TechPreview;
* @author anttil * @author anttil
*/ */
@JsonObject("as.dto.dataset.id.IContentCopyId") @JsonObject("as.dto.dataset.id.IContentCopyId")
@TechPreview
public interface IContentCopyId extends IObjectId public interface IContentCopyId extends IObjectId
{ {
} }
...@@ -26,7 +26,6 @@ import ch.systemsx.cisd.common.annotation.TechPreview; ...@@ -26,7 +26,6 @@ import ch.systemsx.cisd.common.annotation.TechPreview;
* @author pkupczyk * @author pkupczyk
*/ */
@JsonObject("as.dto.dataset.update.ContentCopyListUpdateValue") @JsonObject("as.dto.dataset.update.ContentCopyListUpdateValue")
@TechPreview
public class ContentCopyListUpdateValue extends ListUpdateValue<ContentCopyCreation, IContentCopyId, ContentCopyCreation, Object> public class ContentCopyListUpdateValue extends ListUpdateValue<ContentCopyCreation, IContentCopyId, ContentCopyCreation, Object>
{ {
......
...@@ -78,14 +78,12 @@ public class LinkedDataUpdate implements IUpdate ...@@ -78,14 +78,12 @@ public class LinkedDataUpdate implements IUpdate
} }
@JsonIgnore @JsonIgnore
@TechPreview
public ContentCopyListUpdateValue getContentCopies() public ContentCopyListUpdateValue getContentCopies()
{ {
return contentCopies; return contentCopies;
} }
@JsonIgnore @JsonIgnore
@TechPreview
public void setContentCopyActions(List<ListUpdateAction<Object>> actions) public void setContentCopyActions(List<ListUpdateAction<Object>> actions)
{ {
contentCopies.setActions(actions); contentCopies.setActions(actions);
......
...@@ -134,26 +134,22 @@ public class ExternalDms implements Serializable, ICodeHolder ...@@ -134,26 +134,22 @@ public class ExternalDms implements Serializable, ICodeHolder
this.openbis = openbis; this.openbis = openbis;
} }
@TechPreview
public void setAddressType(ExternalDmsAddressType type) public void setAddressType(ExternalDmsAddressType type)
{ {
this.addressType = type; this.addressType = type;
} }
@TechPreview
@JsonProperty @JsonProperty
public ExternalDmsAddressType getAddressType() public ExternalDmsAddressType getAddressType()
{ {
return addressType; return addressType;
} }
@TechPreview
public void setAddress(String address) public void setAddress(String address)
{ {
this.address = address; this.address = address;
} }
@TechPreview
@JsonProperty @JsonProperty
public String getAddress() public String getAddress()
{ {
......
...@@ -4,7 +4,6 @@ import ch.systemsx.cisd.base.annotation.JsonObject; ...@@ -4,7 +4,6 @@ import ch.systemsx.cisd.base.annotation.JsonObject;
import ch.systemsx.cisd.common.annotation.TechPreview; import ch.systemsx.cisd.common.annotation.TechPreview;
@JsonObject("as.dto.externaldms.ExternalDmsAddressType") @JsonObject("as.dto.externaldms.ExternalDmsAddressType")
@TechPreview
public enum ExternalDmsAddressType public enum ExternalDmsAddressType
{ {
OPENBIS, URL, FILE_SYSTEM; OPENBIS, URL, FILE_SYSTEM;
......
...@@ -28,7 +28,6 @@ import ch.systemsx.cisd.common.annotation.TechPreview; ...@@ -28,7 +28,6 @@ import ch.systemsx.cisd.common.annotation.TechPreview;
* @author anttil * @author anttil
*/ */
@JsonObject("as.dto.externaldms.create.ExternalDmsCreation") @JsonObject("as.dto.externaldms.create.ExternalDmsCreation")
@TechPreview
public class ExternalDmsCreation implements ICreation, IObjectCreation, ICreationIdHolder public class ExternalDmsCreation implements ICreation, IObjectCreation, ICreationIdHolder
{ {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment