forked from logrhythm/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request elastic#471 from Tom-Artale/allconf-password-change
Fixup name of AllConf proto file so it is picked up by generator
- Loading branch information
Showing
2 changed files
with
29 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package configelements.ux; | ||
|
||
import "ConfigUX.proto"; | ||
|
||
|
||
|
||
option java_package = "com.logrhythm.configelements.ux"; | ||
option java_outer_classname = "AllConfConfigUXMsg"; | ||
|
||
message AllConfConfigUX { | ||
optional ConfigUX hostIp = 1; | ||
optional ConfigUX hostPort = 2; | ||
optional ConfigUX assetPath = 3; | ||
optional ConfigUX configServerQueue = 4; | ||
|
||
// optional ConfigUX adminUsername = 5; | ||
// optional ConfigUX adminPassword = 6; | ||
// optional ConfigUX devUsername = 7; | ||
// optional ConfigUX devPassword = 8; | ||
|
||
optional ConfigUX administratorUsername = 9; | ||
optional ConfigUX administratorPassword = 10; | ||
optional ConfigUX developerUsername = 11; | ||
optional ConfigUX developerPassword = 12; | ||
} |