/* * Copyright 2014-2016 CyberVision, Inc. * * Licensed 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 org.kaaproject.kaa.server.admin.client.mvp.activity; import com.google.gwt.user.client.rpc.AsyncCallback; import org.kaaproject.avro.ui.shared.RecordField; import org.kaaproject.kaa.common.dto.EndpointProfileSchemaDto; import org.kaaproject.kaa.server.admin.client.KaaAdmin; import org.kaaproject.kaa.server.admin.client.mvp.ClientFactory; import org.kaaproject.kaa.server.admin.client.mvp.place.CtlSchemaPlace.SchemaType; import org.kaaproject.kaa.server.admin.client.mvp.place.ProfileSchemaPlace; import org.kaaproject.kaa.server.admin.client.mvp.view.BaseCtlSchemaView; import org.kaaproject.kaa.server.admin.shared.schema.ConverterType; import org.kaaproject.kaa.server.admin.shared.schema.CtlSchemaFormDto; import org.kaaproject.kaa.server.admin.shared.schema.ProfileSchemaViewDto; public class ProfileSchemaActivity extends AbstractBaseCtlSchemaActivityApplication <EndpointProfileSchemaDto, ProfileSchemaViewDto, BaseCtlSchemaView, ProfileSchemaPlace> { public ProfileSchemaActivity(ProfileSchemaPlace place, ClientFactory clientFactory) { super(place, clientFactory); } @Override protected ProfileSchemaViewDto newSchema() { return new ProfileSchemaViewDto(); } @Override protected BaseCtlSchemaView getView(boolean create) { if (create) { return clientFactory.getCreateProfileSchemaView(); } else { return clientFactory.getProfileSchemaView(); } } @Override protected void getEntity(String id, AsyncCallback<ProfileSchemaViewDto> callback) { KaaAdmin.getDataSource().getProfileSchemaView(id, callback); } @Override protected void editEntity(ProfileSchemaViewDto entity, AsyncCallback<ProfileSchemaViewDto> callback) { KaaAdmin.getDataSource().saveProfileSchemaView(entity, callback); } @Override protected void createEmptyCtlSchemaForm(AsyncCallback<CtlSchemaFormDto> callback) { KaaAdmin.getDataSource().createNewCtlSchemaFormInstance(null, null, applicationId, ConverterType.FORM_AVRO_CONVERTER, callback); } @Override public void loadFormData(String fileItemName, AsyncCallback<RecordField> callback) { KaaAdmin.getDataSource().generateCommonSchemaForm(fileItemName, callback); } @Override protected ProfileSchemaPlace existingSchemaPlace( String applicationId, String schemaId) { return new ProfileSchemaPlace(applicationId, schemaId); } @Override protected SchemaType getPlaceSchemaType() { return SchemaType.ENDPOINT_PROFILE; } }