Java tutorial
/** * 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.gst.infrastructure.configuration.domain; import java.util.LinkedHashMap; import java.util.Map; import javax.persistence.Column; import javax.persistence.EmbeddedId; import javax.persistence.Entity; import javax.persistence.Table; import org.apache.commons.lang.StringUtils; import com.gst.infrastructure.configuration.data.ExternalServicesPropertiesData; import com.gst.infrastructure.configuration.service.ExternalServicesConstants.EXTERNALSERVICEPROPERTIES_JSON_INPUT_PARAMS; import com.gst.infrastructure.configuration.service.ExternalServicesConstants.SMTP_JSON_INPUT_PARAMS; import com.gst.infrastructure.core.api.JsonCommand; @Entity @Table(name = "c_external_service_properties") public class ExternalServicesProperties { @EmbeddedId ExternalServicePropertiesPK externalServicePropertiesPK; @Column(name = "value", length = 250) private String value; protected ExternalServicesProperties() { } private ExternalServicesProperties(final ExternalServicePropertiesPK externalServicePropertiesPK, final String value) { this.externalServicePropertiesPK = externalServicePropertiesPK; this.value = value; } public static ExternalServicesProperties fromJson(final ExternalService externalService, final JsonCommand command) { final String name = command .stringValueOfParameterNamed(EXTERNALSERVICEPROPERTIES_JSON_INPUT_PARAMS.NAME.getValue()); final String value = command .stringValueOfParameterNamed(EXTERNALSERVICEPROPERTIES_JSON_INPUT_PARAMS.VALUE.getValue()); return new ExternalServicesProperties(new ExternalServicePropertiesPK(externalService.getId(), name), value); } public Map<String, Object> update(final JsonCommand command, String paramName) { final Map<String, Object> actualChanges = new LinkedHashMap<>(2); final String valueParamName = EXTERNALSERVICEPROPERTIES_JSON_INPUT_PARAMS.VALUE.getValue(); if (command.isChangeInStringParameterNamed(paramName, this.value)) { final String newValue = command.stringValueOfParameterNamed(paramName); if (paramName.equals(SMTP_JSON_INPUT_PARAMS.PASSWORD.getValue()) && newValue.equals("XXXX")) { // If Param Name is Password and ParamValue is XXXX that means // the password has not been changed. } else { actualChanges.put(valueParamName, newValue); } this.value = StringUtils.defaultIfEmpty(newValue, null); } return actualChanges; } public ExternalServicesPropertiesData toData() { return new ExternalServicesPropertiesData(this.externalServicePropertiesPK.getName(), this.value); } }