-
Notifications
You must be signed in to change notification settings - Fork 1.3k
CLOUDSTACK-9815 move CertService to more generic location #2071
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,7 +14,7 @@ | |
| // KIND, either express or implied. See the License for the | ||
| // specific language governing permissions and limitations | ||
| // under the License. | ||
| package org.apache.cloudstack.network.lb; | ||
| package org.apache.cloudstack.network.ssl; | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I got a little confuse here.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ae4e571#diff-ebb55a3f7379d7132877a94057342689R39 shows "org.apache.cloudstack.network.tls". I will have a quick check to see what happened locally?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So here is what happened, @rafaelweingartner :
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah, now I get it. So, someone else in the past moved the implementation, but not the interfaces. |
||
|
|
||
| import com.cloud.domain.DomainVO; | ||
| import com.cloud.domain.dao.DomainDao; | ||
|
|
@@ -26,7 +26,7 @@ | |
| import com.cloud.network.dao.LoadBalancerVO; | ||
| import com.cloud.network.dao.SslCertDao; | ||
| import com.cloud.network.dao.SslCertVO; | ||
| import com.cloud.network.lb.CertService; | ||
| import org.apache.cloudstack.network.tls.CertService; | ||
| import com.cloud.network.rules.LoadBalancer; | ||
| import com.cloud.projects.Project; | ||
| import com.cloud.projects.ProjectService; | ||
|
|
||
Large diffs are not rendered by default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shouldn't this package be "org.apache.cloudstack.network.tls"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could be but that would in this state be incorrect (see other discuss location in this review thread.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@karuturi the interfaces are in 'tls' sub-package, but the impl are still in 'ssl'?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@rhtyd we will address that when we make this into a CA-service. I'll create a ticket. It is really very minor.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
issue CLOUDSTACK-9898 created