com.gs.obevo.impl.DefaultDeployerPlugin Maven / Gradle / Ivy
The newest version!
/**
* Copyright 2017 Goldman Sachs.
* 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.gs.obevo.impl;
import com.gs.obevo.api.appdata.Environment;
import com.gs.obevo.api.appdata.PhysicalSchema;
import org.eclipse.collections.api.collection.ImmutableCollection;
import org.eclipse.collections.api.list.ImmutableList;
public class DefaultDeployerPlugin implements DeployerPlugin> {
@Override
public void validateSetup() {
}
@Override
public void initializeSchema(Environment env, PhysicalSchema schema) {
}
@Override
public void printArtifactsToProcessForUser2(Changeset artifactsToProcess, DeployStrategy deployStrategy, Environment env, ImmutableCollection deployedChanges, ImmutableCollection sourceChanges) {
}
@Override
public void validatePriorToDeployment(Environment env, DeployStrategy deployStrategy, ImmutableList sourceChanges, ImmutableCollection deployedChanges, Changeset artifactsToProcess) {
}
@Override
public void doPostDeployAction(Environment env, ImmutableList sourceChanges) {
}
@Override
public void logEnvironmentMetrics(Environment env) {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy