Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor oracle bmcs #2702

Merged
merged 4 commits into from
Jun 13, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@
* If a copy of the Apache License Version 2.0 was not distributed with this file,
* You can obtain one at https://www.apache.org/licenses/LICENSE-2.0.html
*/
package com.netflix.spinnaker.clouddriver.oraclebmcs
package com.netflix.spinnaker.clouddriver.oracle

import com.netflix.spinnaker.clouddriver.core.CloudProvider
import org.springframework.stereotype.Component

import java.lang.annotation.Annotation

/**
* OracleBMCS declaration as a {@link CloudProvider}.
* Oracle declaration as a {@link CloudProvider}.
*/
@Component
class OracleBMCSCloudProvider implements CloudProvider {
class OracleCloudProvider implements CloudProvider {

static final String ID = "oraclebmcs"
static final String ID = "oracle"
final String id = ID
final String displayName = ID
final Class<Annotation> operationAnnotationType = OracleBMCSOperation
final Class<Annotation> operationAnnotationType = OracleOperation
}
Loading