/* * Copyright 2014 the original author or authors. * * 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.springframework.xd.module.options.mixins; import javax.validation.constraints.NotNull; import org.hibernate.validator.constraints.NotBlank; import org.hibernate.validator.constraints.Range; import org.springframework.xd.module.options.spi.Mixin; import org.springframework.xd.module.options.spi.ModuleOption; import org.springframework.xd.module.options.spi.ModulePlaceholders; /** * An option class to mix-in when writing to MongoDB. * * @author Eric Bottard */ public abstract class IntoMongoDbOptionMixin { private String collectionName; private WriteConcern writeConcern = WriteConcern.SAFE; /** * Has {@code collectionName} default to ${xd.job.name}. */ @Mixin(MongoDbConnectionMixin.class) public static class Job extends IntoMongoDbOptionMixin { public Job() { super(ModulePlaceholders.XD_JOB_NAME); } } /** * Has {@code collectionName} default to ${xd.stream.name}. */ @Mixin(MongoDbConnectionMixin.class) public static class Stream extends IntoMongoDbOptionMixin { public Stream() { super(ModulePlaceholders.XD_STREAM_NAME); } } /** * Subclasses should provide a default value for collectionName. */ protected IntoMongoDbOptionMixin(String collectionName) { this.collectionName = collectionName; } @ModuleOption("the MongoDB collection to store") public void setCollectionName(String collectionName) { this.collectionName = collectionName; } @ModuleOption("the default MongoDB write concern to use") public void setWriteConcern(WriteConcern writeConcern) { this.writeConcern = writeConcern; } @NotNull public WriteConcern getWriteConcern() { return writeConcern; } // @NotBlank public String getCollectionName() { return this.collectionName; } public static enum WriteConcern { NONE, NORMAL, SAFE, FSYNC_SAFE, REPLICAS_SAFE, JOURNAL_SAFE, MAJORITY; } }