Codota Logo
PhysicalSchema
Code IndexAdd Codota to your IDE (free)

How to use
PhysicalSchema
in
com.gs.obevo.api.appdata

Best Java code snippets using com.gs.obevo.api.appdata.PhysicalSchema (Showing top 20 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
BufferedReader b =
  • Codota IconInputStream in;new BufferedReader(new InputStreamReader(in))
  • Codota IconReader in;new BufferedReader(in)
  • Codota IconFile file;new BufferedReader(new FileReader(file))
  • Smart code suggestions by Codota
}
origin: goldmansachs/obevo

  @Override
  public String valueOf(PhysicalSchema physicalSchema) {
    return physicalSchema.getPhysicalName();
  }
}).makeString(",") + "]";
origin: com.goldmansachs.obevo/obevo-core

public PhysicalSchema getPhysicalSchema(String schema) {
  // do not append the suffix from the getDeployer metadata if an override is specified
  String prefix = Environment.this.schemaNameOverrides.containsKey(schema) ? "" : getDbSchemaPrefix();
  String suffix = Environment.this.schemaNameOverrides.containsKey(schema) ? "" : getDbSchemaSuffix();
  PhysicalSchema physicalSchemaTemp = PhysicalSchema.parseFromString(getPhysicalSchemaPrefixInternal(schema));
  return new PhysicalSchema(prefix + physicalSchemaTemp.getPhysicalName() + suffix, physicalSchemaTemp.getSubschema());
}
origin: com.goldmansachs.obevo/obevo-db-sybase-ase

@Override
public String getSchemaPrefix(PhysicalSchema schema) {
  return schema.getPhysicalName() + "." + ObjectUtils.defaultIfNull(schema.getSubschema(), "") + ".";
}
origin: goldmansachs/obevo

@Override
@Deprecated
public ImmutableCollection<DaRoutine> getProcedureInfo(String physicalSchema, String procedureName, DaSchemaInfoLevel schemaInfoLevel) {
  return getRoutineInfo(new PhysicalSchema(physicalSchema), procedureName, schemaInfoLevel);
}
origin: com.goldmansachs.obevo/obevo-db

  env.setDriverClassName(args.getDriverClass());
final PhysicalSchema physicalSchema = PhysicalSchema.parseFromString(args.getDbSchema());
final Schema schema = new Schema(physicalSchema.getPhysicalName());  // use the physical name as the schema name for the reverse-engineering
env.setSchemas(Sets.immutable.with(schema));
origin: com.goldmansachs.obevo/obevo-db-sybase-ase

@Override
public String getSubschemaPrefix(PhysicalSchema schema) {
  return schema.getSubschema() != null ? schema.getSubschema() + "." : "";
}
origin: com.goldmansachs.obevo/obevo-db-db2

PhysicalSchema getPhysicalSchema() {
  return PhysicalSchema.parseFromString(this.schema);
}
origin: goldmansachs/obevo

@Override
public String getSchemaExpression(PhysicalSchema physicalSchema) {
  String subschema = ObjectUtils.defaultIfNull(physicalSchema.getSubschema(), "dbo");
  return physicalSchema.getPhysicalName() + "\\." + subschema;
}
origin: goldmansachs/obevo

@Override
@Deprecated
public DaCatalog getDatabaseOptional(String physicalSchema) {
  return getDatabaseOptional(new PhysicalSchema(physicalSchema));
}
origin: goldmansachs/obevo

  env.setDriverClassName(args.getDriverClass());
final PhysicalSchema physicalSchema = PhysicalSchema.parseFromString(args.getDbSchema());
final Schema schema = new Schema(physicalSchema.getPhysicalName());  // use the physical name as the schema name for the reverse-engineering
env.setSchemas(Sets.immutable.with(schema));
origin: goldmansachs/obevo

@Override
public String getSubschemaPrefix(PhysicalSchema schema) {
  return schema.getSubschema() != null ? schema.getSubschema() + "." : "";
}
origin: goldmansachs/obevo

PhysicalSchema getPhysicalSchema() {
  return PhysicalSchema.parseFromString(this.schema);
}
origin: goldmansachs/obevo

  @Override
  public String getSchemaExpression(PhysicalSchema physicalSchema) {
    return "(?i).+\\." + physicalSchema.getPhysicalName();
  }
}
origin: goldmansachs/obevo

@Override
public String getSchemaExpression(PhysicalSchema physicalSchema) {
  String subschema = ObjectUtils.defaultIfNull(physicalSchema.getSubschema(), "dbo");
  return physicalSchema.getPhysicalName() + "\\." + subschema;
}
origin: goldmansachs/obevo

public PhysicalSchema getPhysicalSchema(String schema) {
  // do not append the suffix from the getDeployer metadata if an override is specified
  String prefix = Environment.this.schemaNameOverrides.containsKey(schema) ? "" : getDbSchemaPrefix();
  String suffix = Environment.this.schemaNameOverrides.containsKey(schema) ? "" : getDbSchemaSuffix();
  PhysicalSchema physicalSchemaTemp = PhysicalSchema.parseFromString(getPhysicalSchemaPrefixInternal(schema));
  return new PhysicalSchema(prefix + physicalSchemaTemp.getPhysicalName() + suffix, physicalSchemaTemp.getSubschema());
}
origin: goldmansachs/obevo

@Override
@Deprecated
public DaCatalog getDatabase(String physicalSchema, DaSchemaInfoLevel schemaInfoLevel, boolean searchAllTables,
    boolean searchAllRoutines) {
  return this.getDatabase(new PhysicalSchema(physicalSchema), schemaInfoLevel, searchAllTables, searchAllRoutines);
}
origin: com.goldmansachs.obevo/obevo-db-mssql

@Override
public String getSubschemaPrefix(PhysicalSchema schema) {
  return schema.getSubschema() != null ? schema.getSubschema() + "." : "";
}
origin: com.goldmansachs.obevo/obevo-db-db2

  throw new IllegalArgumentException("Could not parse the schema/table names for error code " + errorCode + " and message: " + sqlErrorMC);
return Tuples.pair(PhysicalSchema.parseFromString(schemaName), tableName);
origin: com.goldmansachs.obevo/obevo-db-db2

  @Override
  public String valueOf(PhysicalSchema physicalSchema) {
    return physicalSchema.getPhysicalName();
  }
}).makeString("('", "','", "')");
origin: com.goldmansachs.obevo/obevo-db-mssql

@Override
public String getSchemaPrefix(PhysicalSchema schema) {
  return schema.getPhysicalName() + "." + ObjectUtils.defaultIfNull(schema.getSubschema(), "") + ".";
}
com.gs.obevo.api.appdataPhysicalSchema

Most used methods

  • getPhysicalName
  • <init>
  • getSubschema
  • parseFromString

Popular in Java

  • Parsing JSON documents to java classes using gson
  • addToBackStack (FragmentTransaction)
  • putExtra (Intent)
  • startActivity (Activity)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • BufferedInputStream (java.io)
    Wraps an existing InputStream and buffers the input. Expensive interaction with the underlying input
  • String (java.lang)
  • Locale (java.util)
    A Locale object represents a specific geographical, political, or cultural region. An operation that
  • StringTokenizer (java.util)
    The string tokenizer class allows an application to break a string into tokens. The tokenization met
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now