| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /*
- * Copyright 2009-2017 Alibaba Cloud All rights reserved.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #pragma once
- #include <string>
- #include <alibabacloud/oss/Export.h>
- namespace AlibabaCloud
- {
- namespace OSS
- {
- class ALIBABACLOUD_OSS_EXPORT Url
- {
- public:
- explicit Url(const std::string &url = "");
- ~Url();
- bool operator==(const Url &url) const;
- bool operator!=(const Url &url) const;
- std::string authority() const;
- void clear();
- std::string fragment() const;
- void fromString(const std::string &url);
- bool hasFragment() const;
- bool hasQuery() const;
- std::string host()const;
- bool isEmpty() const;
- bool isValid() const;
- int port()const;
- std::string password() const;
- std::string path() const;
- std::string query() const;
- std::string scheme() const;
- void setAuthority(const std::string &authority);
- void setFragment(const std::string &fragment);
- void setHost(const std::string &host);
- void setPassword(const std::string &password);
- void setPath(const std::string &path);
- void setPort(int port);
- void setQuery(const std::string &query);
- void setScheme(const std::string &scheme);
- void setUserInfo(const std::string &userInfo);
- void setUserName(const std::string &userName);
- std::string toString()const;
- std::string userInfo() const;
- std::string userName() const;
- private:
- std::string scheme_;
- std::string userName_;
- std::string password_;
- std::string host_;
- std::string path_;
- int port_;
- std::string query_;
- std::string fragment_;
- };
- }
- }
|