All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dslplatform.compiler.client.parameters.GrantRole Maven / Gradle / Ivy

Go to download

Command line client for interaction with DSL Platform compiler (https://dsl-platform.com)

The newest version!
package com.dslplatform.compiler.client.parameters;

import com.dslplatform.compiler.client.CompileParameter;
import com.dslplatform.compiler.client.Context;

public enum GrantRole implements CompileParameter {
	INSTANCE;

	@Override
	public String getAlias() {
		return "grant";
	}

	@Override
	public String getUsage() {
		return "role";
	}

	@Override
	public boolean check(final Context context) {
		return true;
	}

	@Override
	public void run(final Context context) {
	}

	@Override
	public String getShortDescription() {
		return "Specify custom Oracle GRANT TO role. Default is PUBLIC";
	}

	@Override
	public String getDetailedDescription() {
		return "To improve security for Oracle scripts, custom role can be specified.";
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy