/* Copyright (c) 2015 LinkedIn Corp. 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 com.linkedin.restli.common.validation; import com.linkedin.restli.restspec.RestSpecAnnotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Specifies paths of CreateOnly fields for a Rest.li resource. * The client can set the CreateOnly field when creating the entity, but it cannot change the field afterwards. * An example is the purchase price. The client will send the price in a create request while creating the Purchase entry, * and the price cannot be modified. * <p> * CreateOnly fields can be specified in a create request but not in a partial update request. * They should be specified in update requests, but they should have the same value as the original entity * (if an optional field was missing from the entity, it should be missing in the update request too). * <b>This is not checked by the Rest.li framework and should be checked in the resource implementation.</b> * <p> * See {@link RestLiDataValidator} for details on how to format paths. * * @author Soojung Ha */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) @RestSpecAnnotation(name = "createOnly") public @interface CreateOnly { String[] value(); }