Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
levy5307 committed Nov 4, 2020
1 parent db021b4 commit c24b3bf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@

@ReplicaSessionInterceptor.Private
public interface ReplicaSessionInterceptor {
@Documented
@interface Private {};

// The behavior when a rpc session is connected.
void onConnected(ReplicaSession session);

@Documented
@interface Private {};
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
/** authentiation protocol */
@AuthProtocol.Private
public interface AuthProtocol {
@Documented
@interface Private {};

/** start the authentiate process */
void authenticate(ReplicaSession session);

@Documented
@interface Private {};
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@
/** credential info for authentiation */
@Credential.Private
public interface Credential {
@Documented
@interface Private {};

String KERBEROS_PROTOCOL_NAME = "kerberos";

static Credential createCredential(String authProtocol, Configuration config) {
Expand All @@ -40,4 +37,7 @@ static Credential createCredential(String authProtocol, Configuration config) {

/** get the authentiation protocol supported */
AuthProtocol getProtocol();

@Documented
@interface Private {};
}

0 comments on commit c24b3bf

Please sign in to comment.