예제 #1
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: public UserService(@Context UserManagerSupplier userManagerSupplier, @Context InputFormat input, @Context OutputFormat output)
        public UserService(UserManagerSupplier userManagerSupplier, InputFormat input, OutputFormat output)
        {
            this._userManagerSupplier = userManagerSupplier;
            this._input  = input;
            this._output = output;
        }
예제 #2
0
 private Authentication Authentication(AuthManager authManager, UserManagerSupplier userManagerSupplier)
 {
     return(new BasicAuthentication(authManager, userManagerSupplier));
 }
예제 #3
0
 public BasicAuthentication(AuthManager authManager, UserManagerSupplier userManagerSupplier)
 {
     this._authManager         = authManager;
     this._userManagerSupplier = userManagerSupplier;
 }